我在片段中有一个简单的行模型和一个ListView; ListView被正确填充,包含所有正确的尺寸,颜色等。问题是,点击一行不会触发任何事件。
我片段中的代码是:
MyAdapter mAdapter = new MyAdapter(getActivity().getApplicationContext(), R.layout.list_row, strings);
mList.setAdapter(mAdapter);
mList.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
Log.d("LIST", "Selected item # " + position);
}
});
片段布局(一部分)是:
<ListView
android:id="@+id/m_list"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:layout_margin="20dp"
android:clickable="true"
android:longClickable="true">
</ListView>
行布局为:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_height="wrap_content"
android:layout_width="match_parent">
<TextView
android:id="@+id/txt_surname"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:layout_weight="1"
android:text="@string/surname"
style="@style/ListStyleXLarge"/>
<!-- 4 more TextView just as the first one -->
</LinearLayout>
风格很简单:
<style name="ListStyleXLarge">
<item name="android:textSize">
@dimen/text_size_large
</item>
<item name="android:textStyle">
bold
</item>
<item name="android:textColor">
@color/list_item_text_color
</item>
</style>
什么可以解决这个问题?我已经尝试设置
android:clickable="false"
android:focuseable="false"
android:focuseableInTouchMode="false"
到所有TextViews,但到目前为止还没有。
答案 0 :(得分:2)
在MyAdapter课程中:
在getView方法中使用:
convertView.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
Log.d("LIST", "Selected item # " + position);
}
});
答案 1 :(得分:0)
在你的list_item xml中放入android:descendantFocusability =&#34; blocksDescendants&#34;你在LinearLayout或RelativeLayout中。