gpt4 book ai didi

android - 如何调整背景图像大小以适应android中的应用程序屏幕大小

转载 作者:行者123 更新时间:2023-11-29 17:25:12 26 4
gpt4 key购买 nike

我使用的是 s4 galaxy,我下载了以下壁纸 wallpaper http://www.sswallpaper.com/get/samsung-galaxy-s4-wallpapers/Keep-Running-1080x1920/595-2.jpg我试图将此墙纸用作背景图像,但图像不适合我的屏幕。如何调整大小以适合我的应用程序的屏幕大小?

这是我的 Xml 代码:

      <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/walking" >

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="WELCOME"
android:textSize="40dp"
android:textColor="@color/textColor"
android:textStyle="bold"
android:typeface="serif"
android:id="@+id/textView5"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="45dp" />

<TextView
android:layout_width="189dp"
android:layout_height="50dp"
android:text="SKIP"
android:textSize="20dp"
android:textColor="@color/textColor"
android:textStyle="bold"
android:typeface="serif"
android:gravity="center"
android:id="@+id/skip"
android:onClick="click"
android:clickable="true"
android:layout_gravity="bottom"
android:layout_alignParentBottom="true"
android:layout_toStartOf="@+id/textView5" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="To skip the tutorial press SKIP at the bottom.Slide to the left to continue to tutorial page."
android:id="@+id/textView3"
android:textColor="@color/textColor"
android:layout_below="@+id/textView5"
android:layout_centerHorizontal="true"
android:layout_marginTop="90dp" />

</RelativeLayout>

我得到的图像的屏幕截图 screenshot

最佳答案

如果你不想让你的图像缩放.....那么你应该使用..

android:scaleType="centerCrop"

编辑:

你应该为这种布局使用 FrameLayout,像这样......

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

<ImageView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scaleType="centerCrop"
android:src="@drawable/walking"/>

<LinearLayout
android:id="@+id/contentLayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent">

.......

</LinearLayout>

</FrameLayout>

关于android - 如何调整背景图像大小以适应android中的应用程序屏幕大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34973661/

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