私はリストビューを持っています。すべてのボタンが異なるアクティビティを開くようにしたいです。
リストビューには多くのオプションがあり、各オプションは別のアクティビティにつながります。
これを行う方法がわかりませんでした。
ありがとう。
ジャワ
public class AndroidListViewActivity extends ListActivity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
String[] adobe_products = getResources().getStringArray(
R.array.adobe_products);
this.setListAdapter(new ArrayAdapter<String>(this, R.layout.list_item,
R.id.label, adobe_products));
ListView lv = getListView();
lv.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView<?> parent, View view,
int position, long id) {
String product = ((TextView) view).getText().toString();
Intent i = new Intent(getApplicationContext(), mavo.class);
i.putExtra("product", product);
startActivity(i);
} });}}
listen_item XML
<?xml version="1.0" encoding="utf-8"?>
<!-- Single List Item Design -->
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/label"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="10dip"
android:textSize="16dip"
android:textStyle="bold" >
</TextView>