这个想法是去一个 ListActivity,点击一个项目,如果你点击项目 X,它会显示一个特定的图像。
那是我的安卓代码。
package vds.cmc;
public class Dae extends ListActivity {
static final String bigfoot[] = {"Boy", "Girl"};
ImageView iv;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setListAdapter(new PeopleAdapter(this, bigfoot));
iv = (ImageView) findViewById(R.id.ivID);
}
@Override
protected void onListItemClick(ListView l, View v, int position, long id) {
// TODO Auto-generated method stub
super.onListItemClick(l, v, position, id);
String qlo = bigfoot[position];
try {
if (qlo == "Girl") {
setContentView(R.layout.ppl);
iv.setImageResource(R.drawable.cw);
}
else {
setContentView(R.layout.ppl);
iv.setImageResource(R.drawable.no);
}
}
catch (Exception e) {
e.printStackTrace();
}
}
}
我该怎么做?或者我该如何解决?
谢谢,我在这方面很新。