TextView在列表视图之后不出现

发布于 2025-01-05 17:39:19 字数 912 浏览 1 评论 0原文

我想在 XML 中的列表视图之后显示 TextView 我正在使用不同的 XML 来填充列表视图的元素。我在列表视图之后(列表视图下方)添加了另一个文本视图,但我看不到它...当我尝试将列表视图放置其自己的布局时,我得到了一个空指针...有什么想法吗?

XML

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
  <TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Large Text"
    android:textAppearance="?android:attr/textAppearanceLarge" />
<ListView
     android:id="@+id/listView1"
     android:layout_height="fill_parent"
     android:layout_width="fill_parent">

</ListView>
    <TextView
    android:id="@+id/textView2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Large Text"
     />

I want to display the TextView after the listview in my XML I am using a diffrent XML to fill in the elements of th elist view . I added another textview after(below the listview) the list view but I am cannot see it...When I tried to place the listview its own layout i got a nullpointer...any idea?

XML

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
  <TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Large Text"
    android:textAppearance="?android:attr/textAppearanceLarge" />
<ListView
     android:id="@+id/listView1"
     android:layout_height="fill_parent"
     android:layout_width="fill_parent">

</ListView>
    <TextView
    android:id="@+id/textView2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Large Text"
     />

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

半岛未凉 2025-01-12 17:39:19

我认为你应该使用RelativeLayout而不是LinearLayout,在文本视图上方的listView中填充父级高度,并使用文本视图将父级底部与wrap_content对齐。

XML

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
  <TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Large Text"
    android:textAppearance="?android:attr/textAppearanceLarge" />
<ListView
     android:id="@+id/listView1"
     android:layout_above="@+id/textView2"
     android:layout_below="@+id/textView1"
     android:layout_height="fill_parent"
     android:layout_width="fill_parent">

</ListView>
    <TextView
    android:id="@+id/textView2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Large Text"
    android:layout_alignParentBottom="true"
     />

</RelativeLayout>

I think you should use RelativeLayout instead of LinearLayout with having listView above of Text view with fill parent height, and text view to align bottom of parent with wrap_content.

XML

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
  <TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Large Text"
    android:textAppearance="?android:attr/textAppearanceLarge" />
<ListView
     android:id="@+id/listView1"
     android:layout_above="@+id/textView2"
     android:layout_below="@+id/textView1"
     android:layout_height="fill_parent"
     android:layout_width="fill_parent">

</ListView>
    <TextView
    android:id="@+id/textView2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Large Text"
    android:layout_alignParentBottom="true"
     />

</RelativeLayout>
々眼睛长脚气 2025-01-12 17:39:19

因为您已使用 fill_parent 声明了高度宽度

只需声明 android:width="fill_parent"android:height="wrap_content"

进行此更改后,您的 TextView 将在那里。

Because you have declared height and width with fill_parent.

Just declare android:width="fill_parent" and android:height="wrap_content".

Once you make this change, your TextView will be there.

败给现实 2025-01-12 17:39:19

作为relativelayout解决方案的替代方案(由穆罕默德建议):

....
<ListView
    android:id="@+id/listView1"
    android:layout_height="0dp"
    android:layout_width="fill_parent"
    android:layout_weight="1" />
....

As alternative for the RelativeLayout solution (and suggested by Mohamed):

....
<ListView
    android:id="@+id/listView1"
    android:layout_height="0dp"
    android:layout_width="fill_parent"
    android:layout_weight="1" />
....
晨曦慕雪 2025-01-12 17:39:19

正如 jitendra 建议的那样,使用相对布局是最好的。
或者,我自己检查了布局,当我为 ListView 分配权重时,第二个 TextView 字段出现了

Using a relative layout would be best as jitendra suggested.
Alternatively, I checked the layout myself and the second TextView field showed up when I assigned a weight to ListView

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