2016-05-06 16 views
0

スピンナからアイテムを選択してボタンを使用せずにテキストビューに表示するにはどうすればよいですか?onItemSelected()を使用する必要がありますが、方法は分かりません。ここ は私のレイアウトです:スピンナーからアイテムを選択してテキストビューに表示

<Spinner 
    android:id="@+id/selectSpinner" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:layout_alignParentTop="true" 
    android:layout_centerHorizontal="true" 
    android:layout_marginTop="37dp" 
    android:entries="@array/spinner_color"> 
</Spinner> 

と空である私のTextView:

<TextView 
    android:id="@+id/backgroundColorTV" 
    android:text="@string/background_color_TV" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent"/> 

答えて

0
backgroundColorTV.setText(parent.getItemAtPosition(pos).toString()); 

onItemSelected()メソッドには、この行を書きます。このようなもの

@Override 
public void onItemSelected(AdapterView<?> parent, View view, int position, long id) { 
    backgroundColorTV.setText(parent.getItemAtPosition(position).toString()); 
} 
+0

はい、ありがとうございます。 –

関連する問題