2016-07-27 15 views
-5

Hello! I want to use same listview or gridview or nested recyclerview but I do not know how to implement this. please help meアンドロイドで入れ子のリサイクラビューを作成する方法は?

+4

こんにちは、歓迎、StackOverflowへ。ヘルプページ、特に[ここではどのトピックについて聞かせていただけますか?](http://stackoverflow.com/help/on-topic)と[質問しないでください。」](http://stackoverflow.com/help/dont-ask)。さらに重要なことは、[Stack Overflow question checklist](http://meta.stackexchange.com/q/156810/204922)をお読みください。また、[最小、完全、および検証可能な例](http://stackoverflow.com/help/mcve)についても知りたいことがあります。 – yennsarah

+0

これはネストされたリサイクラビューではありません。 1つの行に3つのイメージビューを持つ単純なリサイクルビュー。 –

答えて

0

線形レイアウトのxmlファイルを作成し、線形レイアウトのorientationプロパティをhorizo​​ntalに設定します。例えばのために 、

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:orientation="vertical" android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:weightsum="3"> 
    <ImageView 
     android:layout_width="0dp" 
     android:layout_height="match_parent" 
     android:layout_weight="1"/> 
    <ImageView 
     android:layout_width="0dp" 
     android:layout_height="match_parent" 
     android:layout_weight="1"/> 
    <ImageView 
     android:layout_width="0dp" 
     android:layout_height="match_parent" 
     android:layout_weight="1"/> 
</LinearLayout> 

とrecyclerViewアダプタクラスでこのレイアウトを呼び出します。

関連する問題