安卓开发为什么看不到按钮
<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"android:layout...
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/myTextView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"/>
<Button
android:id="@+id/myButton"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
</LinearLayout>我运行程序时只显示了textview
但没显示button是不是被覆盖了 展开
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/myTextView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"/>
<Button
android:id="@+id/myButton"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
</LinearLayout>我运行程序时只显示了textview
但没显示button是不是被覆盖了 展开
展开全部
fill_parent 的意思是填充满包含它的父容器
你的TextView都占满容器了 当然看不到按钮了
首先 你的TextView 和Button都应该把android:layout_height="wap_content"
wap_content的的意思是包裹内容
而且 还要在TextView 和Button 中 添加 android:text="内容"
你的TextView都占满容器了 当然看不到按钮了
首先 你的TextView 和Button都应该把android:layout_height="wap_content"
wap_content的的意思是包裹内容
而且 还要在TextView 和Button 中 添加 android:text="内容"
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你 TextView 宽度和高度设为 fill_parent肯定不行啊,,改成 wap_content就可以了,Button的宽高也改为wap_contentfill_parent可以理解为 充满整个屏幕
wap_content:理解为适应内容
wap_content:理解为适应内容
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
TextView的长和宽全部设为fill_parent了,所以它一下子就把整个layout都铺满了,当然会把button遮住了
建议改成这样:
<TextView android:id="@+id/myTextView" android:layout_width="fill_parent" android:layout_height="wrap_content"/> <Button android:id="@+id/myButton" android:layout_width="wrap_content" android:layout_height="wrap_content"
android:text="OK" />
建议改成这样:
<TextView android:id="@+id/myTextView" android:layout_width="fill_parent" android:layout_height="wrap_content"/> <Button android:id="@+id/myButton" android:layout_width="wrap_content" android:layout_height="wrap_content"
android:text="OK" />
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
android:layout_height="fill_parent" 都改成 android:layout_height="wrap_content“ 啊,都被TextView覆盖了。。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
不懂、、、、、、、、、、、、、、、、、、、
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |