Spinner列表中的图像

时间:2012-03-13 00:10:34

标签: java android android-xml

在对https://stackoverflow.com/a/5114475的回复中,未提供相应的XML。我是否可以获得演示在Spinners中插入图像功能的XML文件。

1 个答案:

答案 0 :(得分:0)

就像这样

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>
相关问题