Spinner RecyclerView

时间:2015-11-07 03:26:27

标签: android spinner android-recyclerview

这是Priyatham Suresh,我是android的新手。

我正在使用带有RecyclerView的微调器。我有一行包含textView和spinner。当我选择微调项目时,我想得到RecyclerView的行位置。

我初步使用了ListView并使用了onItemSelected,它给出了微调器项positon但无法获得行位置。

这是我的行table_settings_row.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="97dp"
    android:paddingTop="16dp"
    android:paddingBottom="16dp"
    android:id="@+id/relativeone">

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:text="Table Number"
        android:id="@+id/tableNo_textview"
        android:layout_alignParentTop="true"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true"
        android:layout_marginLeft="12dp"
        android:textStyle="bold"
        android:textColor="#ff7c40"
        android:editable="true" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginTop="30dp"
        android:paddingTop="10dp">
        <ImageView
            android:src="@drawable/ic_person"
            android:layout_width="22dp"
            android:layout_height="22dp"
            android:paddingLeft="10dp" />

        <Spinner
            android:layout_width="300dp"
            android:layout_height="wrap_content"
            android:id="@+id/users_spinner"
            android:entries="@array/sample_members"
            android:spinnerMode="dropdown"
            android:paddingLeft="20dp"/>
    </LinearLayout>

</RelativeLayout>
</LinearLayout>

1 个答案:

答案 0 :(得分:0)

只需在OnBindView上将标记(位置)设置为微调器。现在,当您选择微调器时,您可以获得该微调器的标签,这是您想要的位置。