gpt4 book ai didi

android - 使用膨胀 View 的 setEmptyView() 不起作用

转载 作者:行者123 更新时间:2023-11-29 18:16:16 25 4
gpt4 key购买 nike

我有一个带有 3 个选项卡的 TabHost,每个选项卡都有一个列表,我想在其中附加一个空 View ,当没有项目存在时显示。布局是这样的:

<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout android:orientation="vertical"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:padding="5dp">
<TabWidget android:id="@android:id/tabs"
android:layout_width="fill_parent" android:layout_height="wrap_content" />
<FrameLayout android:id="@android:id/tabcontent"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:padding="5dp">
<LinearLayout android:layout_height="fill_parent"
android:layout_width="fill_parent">
<ListView android:id="@+id/tab_all_list"
android:layout_width="fill_parent" android:layout_height="fill_parent"></ListView>
<ListView android:id="@+id/tab_call_list"
android:layout_width="fill_parent" android:layout_height="fill_parent">
</ListView>
<ListView android:id="@+id/tab_sms_list"
android:layout_width="fill_parent" android:layout_height="fill_parent">
</ListView>
<LinearLayout android:orientation="vertical"
android:id="@+id/empty_list_view" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:visibility="gone"
android:gravity="center">
<ImageView android:layout_width="wrap_content"
android:layout_height="wrap_content" android:background="@drawable/location_waternark"></ImageView>
<TextView android:text="@string/empty_action_list_text"
android:layout_width="wrap_content" android:layout_height="wrap_content">
</TextView>
</LinearLayout>
</LinearLayout>
</FrameLayout>
</LinearLayout>
</TabHost>

在代码中,我为每个 ListView 设置了这样的空 View (为简洁起见只显示一次):

ListView listView = (ListView) findViewById(R.id.tab_all_list);
listView.setEmptyView(findViewById(R.id.empty_list_view));

仍然,当附加到列表的适配器没有项目时,不会显示空 View 。它与 View 层次结构或其他什么有关吗?

最佳答案

对任何类型的 View 使用 android:id/empty id 作为解释 here .

关于android - 使用膨胀 View 的 setEmptyView() 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7930120/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com