リストビュー用にカスタマイズされたアダプターを使用しています。コードは次のとおりです。
public class ContentAdapter extends ArrayAdapter<Content>{
private ArrayList<Content> items;
public ContentAdapter(Context context, int textViewResourceId, ArrayList<Content> objects) {
super(context, textViewResourceId, objects);
this.items=objects;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View v=convertView;
if (v==null){
LayoutInflater inflater=(LayoutInflater)getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
v=inflater.inflate(R.layout.list_items_layout, null);
}
Content content=items.get(position);
if (content!=null){
TextView nm=(TextView)v.findViewById(R.id.itemname);
TextView sm=(TextView)v.findViewById(R.id.itemsubname);
nm.setTextColor(Color.RED);
nm.setText(content.getName());
sm.setTextColor(Color.GRAY);
sm.setText(content.getSubname());
}
return v;
}
R.layout.list_items_layout:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:descendantFocusability="blocksDescendants">
<TextView android:id="@+id/itemname"
android:textIsSelectable="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=""
android:textSize="20sp"/>
<TextView android:id="@+id/itemsubname"
android:textIsSelectable="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=""
android:textSize="15sp"/>
setOnItemClick(listener) を使用してリストビューのリスナーを作成すると、リスナーが設定されていても、ビューグループの空白部分をクリックしたときにしか認識されません。2 つの TextView のいずれかをクリックしても、応答できません。
ビューグループとその子ビューを同時に監視できる OnItemClickListener を設定する方法はありますか?