Android 无法让 TextViews 用 LinearLayout 显示

发布于 2024-09-30 11:54:49 字数 1058 浏览 3 评论 0原文

我只是想创建一个布局,其中有多个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

神也荒唐 2024-10-07 11:54:49

TextView 的 layout_height 需要是 wrap_content,而不是 fill_parent

Your layout_height for the TextView needs to be wrap_content, not fill_parent.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文