0

ループを使用してスピナーにアイテムを追加しようとしていますが、機能しません。XML リーダーの部分は機能します。スピナーに入力するだけです。ここにコピーペーストされているコードスニペット (simple_spinner_item を含むもの) を適応させようとしましたが、成功しませんでした。

ワークフロー:

1) There's an empty spinner 
2) Delete all items in the spinner (in case I add items to it again) 
3) Parse XML 
4) Add the items from the XML to the spinner

レイアウト:

<Spinner
    android:id="@+id/SPI_Test"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
        android:prompt="@string/test_prompt" />

見る:

//SPINNER
Spinner mySpinner = (Spinner) findViewById(R.id.SPI_Test);


//CLEAR OUT SPINNER SOMEHOW

//XML READER BOTTOM PART
 for (int j = 0; j < childNodes.getLength()-1; j++) {
    Node item = childNodes.item(j);
//SOMEHOW_ADD_TO_SPINNER=item.getTextContent();
4

1 に答える 1