gpt4 book ai didi

java - 如何将 Activity 的布局背景宽度设置为 100%

转载 作者:太空宇宙 更新时间:2023-11-04 14:14:30 25 4
gpt4 key购买 nike

我使用此代码使设备背景成为我的 Activity 布局的背景。

final WallpaperManager wallpaperManager = WallpaperManager.getInstance(this);
final Drawable wallpaperDrawable = wallpaperManager.getDrawable();

MyHome = (GridView) findViewById(R.id.gridView1);
MyHome.setBackgroundDrawable(wallpaperDrawable);

但是,我希望背景的宽度与设备主题中的宽度相同,如此处的图像 enter image description here 所示第一张图片是我的 Activity ,第二张图片是我的手机屏幕锁定。我该如何实现这一目标?

最佳答案

尝试将比例设置为中心裁剪。也许这对你有用

<FrameLayout  
android:layout_width="fill_parent"
android:layout_height="fill_parent">

<ImageView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:src="@drawable/my_image"
android:scaleType="fitCenter" />

<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">
</LinearLayout>

</FrameLayout>

关于java - 如何将 Activity 的布局背景宽度设置为 100%,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27916371/

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