私はカスタムアダプタを使用したリサイクラビューを持っており、リサイクラビューでニュースを表示しています。完全に動作しますが、スクリーンショットのように表示されます。 コード例が必要です。どのように私はそれを達成することができます。 リサイクラービューのカスタムxmlコードです。1つのリサイクラビューで異なるスタイル
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:background="#30000000">
<ImageView
android:id="@+id/iv_news"
android:layout_width="match_parent"
android:layout_height="160dp" />
<TextView
android:id="@+id/tv_news_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="@color/black"
android:layout_marginTop="5dp"
android:padding="5dp"
android:textAppearance="@style/Base.TextAppearance.AppCompat.Large"
/>
</LinearLayout>
のように表示されますが、私はあなたがあなたの直線上に水平の代わりに垂直のご線形レイアウトの向きを設定する必要があり、この
それでは2つの同じ行の項目と、その後1つのつの項目が存在するだろうもう一度アイテム?そしてこれは繰り返し続けますか? – rafid059
[複数のビュータイプでRecyclerViewを作成するにはどうすればいいですか?](https://stackoverflow.com/questions/26245139/how-to-create-recyclerview-with-multiple-view-type) – rafid059
@ rafid059はい。 –