0

我有一个返回 ListView 的 ListFragment。如果列表中没有项目,我想显示一个替代的 TextView 。假设您可以在 XML 中添加一个TextView android:id="@android:id/empty"元素。

但...

添加包含ListView和 TextView 的 FrameLayout 可以预见地给我"FrameLayout cannot be cast to ListView"

我也不能添加一个 TextView 元素。“文档中根元素之后的标记必须格式正确。”

而且我不能切换到View而不是ListView因为它不再是一个列表。

...我该怎么做?

代码:

    @Override
public View onCreateView ( LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState ) {

    adapter = new ArrayAdapter<Project> ( getActivity (), android.R.layout.simple_list_item_1 );
    arrayList = ProjectManager.getProjectList ( getActivity () );
    for ( Project p : arrayList ) {
        if ( p.getStatus () == Project.ONGOING ) {
            adapter.add ( p );
        }
    }

    ListView listView = ( ListView ) inflater.inflate ( R.layout.list, container, false );
    listView.setAdapter ( adapter );

    return listView;
}

XML:

<ListView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
4

3 回答 3

1

我有一个返回 ListView 的 ListFragment。如果列表中没有项目,我想显示一个替代的 TextView 。假设您可以在 XML 中添加一个 TextView android:id="@android:id/empty" 元素。

你可以。

添加包含 ListView 和 TextView 的 FrameLayout 可以预见地给我“FrameLayout 不能转换为 ListView”。

那是因为您的代码中的错误,您假设结果inflate()ListView. 更改它以用于在膨胀的布局findViewById()查找。ListView

于 2013-11-11T15:38:10.840 回答
0

添加一个 id 为空的 TextView:

<TextView android:id="@android:id/empty"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:text="@string/emptyt_message" />

到相同的布局

于 2013-11-11T15:37:50.637 回答
0

请看下面的方法:

http://developer.android.com/reference/android/widget/AdapterView.html#setEmptyView(android.view.View)

为此,您的片段应包含一个容器(即FrameLayout),其中包含 theListView和 aTextView以及您的空消息。

扩展布局时,指定文本视图的视图 ID。将此文本视图的初始可见性设置为INVISIBLE。文本视图的可见性会根据适配器中的元素数量自动更新。

于 2013-11-11T15:41:01.080 回答