ListActivity に移動して項目をクリックすると、項目 X をクリックすると特定の画像が表示されます。
それが私のAndroidコードです。
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();
}
}
}
どうすればいいですか?または、どうすれば修正できますか?
ありがとう、私はこれでかなり新しいです。