2 つの ListView を使用してサンプル アプリを作成しました。リストビューの選択イベントに問題があります。ユーザーが最初のリストビューをクリックしたときに、データを2番目のリストビューにバインドしたい。Activity クラスで「Activity」を拡張しました。また、現在のリスト項目を別の色に変更したいと考えています。
listviewCatagory.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
public void onItemSelected(AdapterView<?> arg0, View arg1,
int arg2, long arg3) {
// TODO Auto-generated method stub
arg1.setSelected(true);
TextView lblCatagory = (TextView) findViewById(R.id.lblCatagory);
lblCatagory.setTextColor(getResources().getColor(
R.color.White));
//Log.d("Selected Item", Integer.toString(arg2));
Toast.makeText(getApplicationContext(), Integer.toString(arg2), Toast.LENGTH_SHORT).show();
}
public void onNothingSelected(AdapterView<?> arg0) {
// TODO Auto-generated method stub
}
});