如何在ListView中获取Spinner

时间:2012-12-03 08:06:26

标签: android listview spinner

我的Activity布局中有一个ListView。 listview_layout.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout  xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <ListView android:layout_width="wrap_content"    
        android:layout_height="wrap_content"    
        android:id="@+id/MyListView" />
</LinearLayout>

我正在为ListView的ListItem使用另一种布局。

listitem_layout.xml

<?xml version="1.0" encoding="utf-8"?>  
<RelativeLayout    
    android:id="@+id/RelativeLayout01"    
    android:layout_width="fill_parent"    
    xmlns:android="http://schemas.android.com/apk/res/android"    
    android:layout_height="fill_parent">  

    <TextView
        android:id="@+id/txtTitle"
        android:layout_width="80dp"
        android:layout_height="wrap_content" />

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

</RelativeLayout>  

我的Activity的布局与listview_layout.xml的布局相同。

我使用SimpleAdapter引用了listitem_layout.xml的布局。

问题:现在我想得到listview_layout.xm的Spinner控件ID。

我在ListView的活动中使用findViewById(MySpinner),它有空指针异常的错误。 找不到。因为Activity布局文件使用listview_layout.xml中的listview_layout.xml和Spinner控件。

任何人的帮助都非常感谢。

1 个答案:

答案 0 :(得分:3)

你不能直接使用findViewById(spinnerId)。您必须覆盖自定义适配器的getView()方法而不是简单适配器,并在里面将listitem_layout膨胀为视图(v),然后使用v.findViewById(spinnerId)。

请参阅下面的link,它将帮助您创建自定义适配器(链接示例中的Weather Adapter)。在示例中,ImageView对象是在GetView方法中创建的。而不是你使用Spinner。