Android 无法让 TextViews 用 LinearLayout 显示
我只是想创建一个布局,其中有多个 TextView(最终是一个 EditText)在活动中垂直堆叠。但是,唯一显示的是我的顶部标题栏和第一个 TextView (带有“Name”文本)。为什么没有其他东西出现?这是我的代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:orientation="vertical"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:layout_weight="1">
<TextView android:text="Name:" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:textColor="#4096cc"
android:paddingTop="15dip" android:paddingLeft="15dip"
android:textSize="20sp" />
<TextView
android:text="This is my little description."
android:layout_width="wrap_content" android:layout_height="fill_parent"
android:textColor="#333333" android:paddingTop="10dip"
android:paddingLeft="15dip" android:textSize="10sp" />
<EditText android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</LinearLayout>
谢谢!
I am simply trying to create a layout where there are multiple TextViews (and ultimately an EditText) stacked vertically in the activity. However, the only thing displayed is my top title bar and the first TextView (with the "Name" text). Why won't anything else show up? Here is my code:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:orientation="vertical"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:layout_weight="1">
<TextView android:text="Name:" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:textColor="#4096cc"
android:paddingTop="15dip" android:paddingLeft="15dip"
android:textSize="20sp" />
<TextView
android:text="This is my little description."
android:layout_width="wrap_content" android:layout_height="fill_parent"
android:textColor="#333333" android:paddingTop="10dip"
android:paddingLeft="15dip" android:textSize="10sp" />
<EditText android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</LinearLayout>
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
TextView 的
layout_height
需要是wrap_content
,而不是fill_parent
。Your
layout_height
for the TextView needs to bewrap_content
, notfill_parent
.