私はアンドロイドが初めてです..
私は意図の問題に直面しています..
私の問題は...あるアクティビティの文字列arrayListからユーザーが選択した値を別のアクティビティに渡したい...値は文字列です..JSONを介してデータベースから取得します。そして、値はarraylistに保存されます..
ここで、あるアクティビティから別のアクティビティに値を渡す必要があります..インテントを使用して..
lvForDialog = (ListView) viewList.findViewById(R.id.List_view); ArrayAdapter<String> adapter = (new ArrayAdapter<String>(Nexttopic.this, R.layout.row_topic, R.id.child_row,tnamelist)); lvForDialog.setAdapter(adapter); lvForDialog.setOnItemClickListener(new OnItemClickListener() { @Override public void onItemClick(AdapterView<?> parent, View view, int position,long id) { Intent intent = new Intent(Nexttopic.this,Question.class); intent.putExtra(TAG_TOPICNAME, tname);
をTAG_TOPICNAME
別のアクティビティに渡したい..ユーザーがその名前を選択したトピック名を渡したい...
これを行う方法?
どうもありがとう..