gpt4 book ai didi

java - 用两个 ImageView 填充横向模式下的宽度

转载 作者:行者123 更新时间:2023-12-02 12:27:58 26 4
gpt4 key购买 nike

我有这个rec​​yclerview,背景是用imageviews制作的。我在纵向和横向时都遇到这两种情况。如何用新的 ImageView 或相同颜色的东西填充那里的空白?

portrait landscape

这是我的 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 左侧的 ImageView ,以填充景观中的空间。谢谢您的帮助。

最佳答案

请尝试一下这个

<?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="match_parent"
android:src="@mipmap/ic_launcher"
android:scaleType="fitXY"
android:layout_height="wrap_content" />

<ImageView
android:id="@+id/home_imageview_background"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@mipmap/ic_launcher"
android:scaleType="fitXY"
android:contentDescription="Background image" />

<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:paddingTop="10dp"
android:textAppearance="?attr/textAppearanceListItem"
android:textColor="@android:color/white"
android:textSize="40sp" />
</RelativeLayout>
</RelativeLayout>

您还可以使用 android:scaleType="centerCrop"。

希望这会对您有所帮助。如果您仍然遇到问题,请告诉我...

关于java - 用两个 ImageView 填充横向模式下的宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45413816/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com