gpt4 book ai didi

android - ImageView 未覆盖父 CardView 的完整宽度

转载 作者:行者123 更新时间:2023-11-30 00:02:49 25 4
gpt4 key购买 nike

我有一个父 LinearLayout,里面有 2 个 CardViews。我在每个 CardView 中都有一个 ImageView。当我在任何 ImageView 中加载图像时,它不会占据 CardView 的完整宽度。 ImageViewCardView 之间有轻微的白色间隙。如何将 ImageView 完全重叠在 CardView 上?这是我的布局。

<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="#F5F5F5"
android:gravity="center">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">

<android.support.v7.widget.CardView
android:id="@+id/adhaarCardFrontUpload"
android:layout_width="0dp"
android:layout_height="@dimen/adhaar_height"
android:layout_marginBottom="5dp"
android:layout_marginEnd="5dp"
android:layout_marginStart="10dp"
android:layout_marginTop="5dp"
android:layout_weight="1"
app:cardCornerRadius="5dp"
app:cardPreventCornerOverlap="false"
app:cardElevation="2dp">

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:gravity="center"
android:orientation="vertical">

<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:scaleType="fitXY"
android:src="@drawable/ic_add" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="2dp"
android:gravity="center"
android:padding="2dp"
android:text="@string/upload_adhaar_front"
android:textColor="@color/colorAccent" />
</LinearLayout>

<ImageView
android:id="@+id/adhaarCardFrontImage"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:adjustViewBounds="true"
android:scaleType="centerCrop"
android:visibility="visible" />

</RelativeLayout>
</android.support.v7.widget.CardView>

<android.support.v7.widget.CardView
android:id="@+id/adhaarCardBackUpload"
android:layout_width="0dp"
android:layout_height="@dimen/adhaar_height"
android:layout_marginBottom="5dp"
android:layout_marginEnd="10dp"
android:layout_marginStart="5dp"
android:layout_marginTop="5dp"
android:layout_weight="1"
app:cardPreventCornerOverlap="false"
app:cardCornerRadius="5dp"
app:cardElevation="2dp">

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:gravity="center"
android:orientation="vertical">

<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:scaleType="fitXY"
android:src="@drawable/ic_add" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="2dp"
android:gravity="center"
android:padding="2dp"
android:text="@string/upload_adhaar_back"
android:textColor="@color/colorAccent" />
</LinearLayout>

<ImageView
android:id="@+id/adhaarCardBackImage"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:adjustViewBounds="true"
android:scaleType="centerCrop"
android:visibility="visible" />

</RelativeLayout>
</android.support.v7.widget.CardView>
</LinearLayout>
</LinearLayout>

最佳答案

将 adjustViewBounds 更改为 false。

<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:adjustViewBounds="false"
android:scaleType="fitXY"
android:src="@drawable/ic_add" />

如果您希望 ImageView 调整其边界以保持其可绘制对象的纵横比,则将其设置为 true。

关于android - ImageView 未覆盖父 CardView 的完整宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49596306/

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