安卓开发为什么看不到按钮

<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项目部
2014-01-15
知道答主
回答量:7
采纳率:0%
帮助的人:3.2万
展开全部
fill_parent 的意思是填充满包含它的父容器
你的TextView都占满容器了 当然看不到按钮了
首先 你的TextView 和Button都应该把android:layout_height="wap_content"
wap_content的的意思是包裹内容
而且 还要在TextView 和Button 中 添加 android:text="内容"
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
chaozhung
2014-01-15 · TA获得超过567个赞
知道小有建树答主
回答量:803
采纳率:67%
帮助的人:270万
展开全部
你 TextView 宽度和高度设为 fill_parent肯定不行啊,,改成 wap_content就可以了,Button的宽高也改为wap_contentfill_parent可以理解为 充满整个屏幕
wap_content:理解为适应内容
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
curllion
2014-01-15 · TA获得超过3633个赞
知道小有建树答主
回答量:1561
采纳率:50%
帮助的人:605万
展开全部
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" />
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
迪亚哥bule
2014-01-15 · TA获得超过223个赞
知道小有建树答主
回答量:108
采纳率:100%
帮助的人:112万
展开全部
android:layout_height="fill_parent" 都改成 android:layout_height="wrap_content“ 啊,都被TextView覆盖了。。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
手机用户35955
2014-01-14
知道答主
回答量:4
采纳率:0%
帮助的人:2.8万
展开全部
不懂、、、、、、、、、、、、、、、、、、、
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式