gpt4 book ai didi

安卓裁剪背景

转载 作者:IT老高 更新时间:2023-10-28 21:59:10 25 4
gpt4 key购买 nike

我有一个 LinearLayout,宽度设置为 fill_parent,高度设置为 wrap_content。现在我想给它一个 png 文件的背景,但是以传统方式这样做会导致 LinearLayout 调整大小以显示整个背景而不是裁剪附加部分。

如何设置 LinearLayout 的背景使其不会调整大小?

谢谢

最佳答案

似乎只有使用 ImageView 并相应地设置 scaleType 参数才能实现这样的事情。一个快速的解决方法是使用 FrameLayout 并将 ImageView 放在另一个具有透明背景的布局下。

代码:

<FrameLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

<ImageView
android:id="@+id/imageView1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
android:src="@drawable/background" />

</FrameLayout>

关于安卓裁剪背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6782294/

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