私はこのrecyclerviewを持っていて、背景はimageviewsで作られています。私はこれら2つの状況を肖像画と風景の中に持っています。ホワイトスペースを新しい画像ビューや同じ色のもので埋めるにはどうしたらいいですか?2つのイメージビューで横向きの幅を塗りつぶします
そして、これは私のxmlです:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<ImageView
android:id="@+id/home_imageview_superbackground"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true" />
<ImageView
android:id="@+id/home_imageview_background"
android:contentDescription="Background image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:layout_alignParentEnd="true" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true">
<TextView
android:id="@+id/content"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fontFamily="casual"
android:paddingBottom="10dp"
android:paddingStart="5dp"
android:paddingTop="10dp"
android:textAppearance="?attr/textAppearanceListItem"
android:textColor="@android:color/white"
android:textSize="40sp" />
</RelativeLayout>
は、いくつかの方法を試してみましたが、私はこの仕事をすることができませんよ。 @ + id/home_imageview_superbackgroundこれは、風景の中のそのスペースを埋めるために各背景画像ビューの左に置いておきたい画像ビューです。お手伝いありがとう。
この描画可能ファイルを作成します。どのようにあなたのコードがどうあるべき
助けてください:) – Weizen
申し訳ありません。ランドスケープバリエーションレイアウトを作成します。 –