我有這個recyclerview,背景是用圖像製作的。我在肖像和風景中有這兩種情況。如何用新的imageview或具有相同顏色的東西填充空白處?用兩個圖像查看橫向模式下的寬度
,這是我的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這是我想放在每個背景圖像視圖的左側以填充景觀中的空間的imageview。感謝您的幫助。
對不起隊友,但你甚至沒有嘗試幫我:) – Weizen
對不起。創建景觀變化佈局。 –