如何在不扩展我的类中的ListActivity的情况下使用listview?

时间:2010-11-09 12:06:50

标签: android listview

我有一个带有各种标签的应用程序(在tabhost上)。每个选项卡都是一个扩展活动的活动,并且有一些textfields及其中的内容。

现在,我需要将我的标签放在listview中,但在Android开发人员指南的示例中,您必须扩展ListActivity而不是Activity。

基本上,我需要合并这两个教程:

如何在不延长课程listview的情况下使用listactivity

我的XML文件:

<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>
</TabHost>

2 个答案:

答案 0 :(得分:18)

几乎一样。基于ListView's tutorial

而不是:

setListAdapter();

执行以下操作:

  • 在布局中添加<ListView>
  • Activity private ListView mListView;
  • 中创建字段变量
onCreate()方法上的

执行此操作:

 mListView = (ListView) findViewById(R.id.your_list_view_id);
 mListView.setAdapter(new ArrayAdapter<String>(this, R.layout.list_item, COUNTRIES));

我不记得ListActivity是否提供更多内容。

答案 1 :(得分:5)

您的TabHost也可以包含ListActivity,因为它继承自Activity

但是,如果您想了解如何以任何方式在活动中添加列表视图,请按照这些说明操作。这很简单,制作一个Activity,在XML中添加Listview

使用findViewById()获取ListView