gpt4 book ai didi

android - 布局背景图像的问题

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:00:26 25 4
gpt4 key购买 nike

我正在尝试在布局中设置像背景图像这样的图像(通过 xml 或代码)

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/main_layout"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/my_image">

View myLayout= findViewById( R.id.main_layout);
myLayout.setBackgroundResource(R.drawable.my_image);

我的问题是 android 修复了所有背景屏幕中的图像、调整大小和修改图像比例。

如何设置图片,并且图片只占用必要的空间? (没有调整图像大小)

最佳答案

在布局中不添加ImageView,如果图像小于空间,您可以创建一个xml bitmap resource。像下面这样,并用它代替原来的背景图片:

<?xml version="1.0" encoding="utf-8"?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/background"
android:gravity="center"
/>

关于android - 布局背景图像的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5470881/

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