изображения в списках Spinner - PullRequest
0 голосов
/ 13 марта 2012

В ответе на https://stackoverflow.com/a/5114475, соответствующий XML не был предоставлен. Могу ли я получить XML-файлы, которые демонстрируют возможность вставки изображений в Spinners.

1 Ответ

0 голосов
/ 13 марта 2012

Было бы что-то вроде этого

spinner_view.xml

<?xml version="1.0" encoding="utf-8"?>

 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     android:layout_width="fill_parent"
     android:orientation="horizontal"
     android:layout_height="wrap_content">


    <TextView 
    android:id="@+id/imageNameSpinner"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"/>


    <ImageView
     android:id="@+id/xR.id.imageIconSpinner"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"/>

 </LinearLayout>

list_editoradd_dialog.xml // Это будет минимум

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >


    <Spinner
    android:id="@+id/spinnerAddImageList"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"/>


</LinearLayout>
...