gpt4 book ai didi

android - Tab 中空 ListView 的消息 - Android

转载 作者:太空狗 更新时间:2023-10-29 13:35:38 25 4
gpt4 key购买 nike

我有一个带有 ListView 和另一个 Activity 的选项卡。那是我的代码:

TabHost tabHost = getTabHost();   
TabHost.TabSpec spec;
Intent intent;

intent = new Intent().setClass(this, ListNoteActivity.class);
spec = tabHost.newTabSpec("list").setIndicator(getString(R.string.list),
res.getDrawable(R.drawable.ic_tab_new)).setContent(intent);
tabHost.addTab(spec);

intent = new Intent().setClass(this, NewNoteActivity.class);
spec = tabHost.newTabSpec("view").setIndicator(getString(R.string.view),
res.getDrawable(R.drawable.ic_tab_new)).setContent(intent);
tabHost.addTab(spec);

tabHost.setCurrentTab(0);

如果选项卡 0 中的列表为空,我如何显示消息或 TextView?

最佳答案

在您的 ListActivity 中,将此布局设置为内容 View :

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">

<ListView android:id="@+id/android:list"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
</ListView>

<TextView android:id="@android:id/empty"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="No Items!"/>
</LinearLayout>

如果 ListView 为空,ListActivity 将自动显示 TextView 。您的 Activity 代码的其余部分保持完全相同。

关于android - Tab 中空 ListView 的消息 - Android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10972792/

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