tabhost中的Untouchable ListView

时间:2011-01-31 02:11:25

标签: android listview

我一直在为一些应该相对简单的事情而苦恼,但我似乎无法让它发挥作用。每个ListView的数据都正确显示,我可以使用轨迹球选择并激活onItemClickListener。但是,我不能通过触摸向下滚动或选择任何项目,我知道我应该能够。任何帮助非常感谢。我的代码和xml如下:

public class POITab extends TabActivity implements AdapterView.OnItemClickListener {

public void onCreate(Bundle savedInstanceState) {

    super.onCreate(savedInstanceState);
    setContentView(R.layout.poitab);

    ListView raillist=(ListView)findViewById(R.id.raillist);
    Cursor mrailStationsCursor = db.type_query(KEY_RAIL);
    setupTab(raillist, mrailStationsCursor, "Rail", R.drawable.logo);

public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
Log.i("touched", " yes");
}

public void setupTab (ListView list, Cursor cursor, String tabname, int drawable) {
startManagingCursor(cursor);
String[] from_all = new String[]{DbAdapter.KEY_NAME};
int[] to_all = new int[] {android.R.id.text1};
list.setAdapter(new SimpleCursorAdapter(this,android.R.layout.simple_list_item_1, cursor, from_all, to_all));
list.setOnItemClickListener(this);

TabHost.TabSpec spec= getTabHost().newTabSpec(tabname);
spec.setContent(list.getId());
spec.setIndicator(tabname, getResources().getDrawable(drawable));
getTabHost().addTab(spec);
}
 }

poitab.xml:

<?xml version="1.0" encoding="utf-8"?>
<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">
<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:paddingTop="62px">
<ListView android:id="@+id/raillist"
android:choiceMode="singleChoice"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1">
</ListView>
</FrameLayout>
</TabHost>`

1 个答案:

答案 0 :(得分:0)

我发现问题是什么 - 我在布局中声明了一个ListView(上面没有显示,也许我应该包括整个源码),但是没有被使用,所有的触摸事件都是由那。所以,故事的道德,只有TabHost中你需要的ListViews,否则会导致你的问题。