我用 2 个 ListView 创建了示例应用程序。我在列表视图选定事件中遇到问题。当用户单击第一个列表视图时,我想将数据绑定到第二个列表视图中。我在我的 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
}
});