0

各アイテムをリサイクルビューに追加したいと思います。誰もラジオボタンをリサイクルビューに追加する方法を知ることができますか?リサイクルビューにラジオボタンを追加する方法は?

これは私のリサイクル図である:

This is my recycler view

私はこの

and this is i want to be

をしたい私のコード:

<?xml version="1.0" encoding="utf-8"?> 
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:app="http://schemas.android.com/apk/res-auto" 
xmlns:tools="http://schemas.android.com/tools" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
android:background="@color/background" 
tools:context=".UserSearchActivity"> 

<android.support.design.widget.AppBarLayout 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content"> 

    <android.support.v7.widget.Toolbar 
     android:id="@+id/toolbar" 
     android:layout_width="match_parent" 
     android:layout_height="?attr/actionBarSize" 
     android:background="@color/primary" 
     android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> 
     <android.support.v7.widget.SearchView 
      android:id="@+id/search" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:imeOptions="actionSearch|flagNoExtractUi" 
      android:theme="@style/SearchView" 
      app:defaultQueryHint="@string/hint_type_name_or_email" /> 
    </android.support.v7.widget.Toolbar> 
</android.support.design.widget.AppBarLayout> 

<android.support.v7.widget.RecyclerView 
    android:id="@+id/recycler_user" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:layout_marginTop="?attr/actionBarSize" /> 
</FrameLayout> 
+0

あなたのlist_item xmlファイルはどこですか? – piotrek1543

答えて

0

あなたはのために別々のlayout xmlファイルを追加する必要があります商品番号にはradio buttonが含まれています。 recycler_item.xml

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

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

    <RadioButton 
    android:id="@+id/radioButton" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_gravity="center_horizontal" 
    android:text="New RadioButton" /> 

</LinearLayout> 

で例えば

は次にrecycler list view adapterを使用してアイテムバレスを更新します。

+0

カスタム・リサイクラ・ビュー・アダプタ・クラスを追加し、アダプタ・クラスのラジオ・ボタンの可視性を処理します。 –

関連する問題