在应用程序背景上设置墙纸



>我正在制作一个应用程序,我想在其中设置墙纸在应用程序背景上,而不是在主屏幕背景上。那里的任何人都可以指导我如何做到这一点吗?

请注意,BackGround 或 Image 视图应始终位于其他视图之上

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<ImageView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:scaleType="centerCrop"
    android:src="@drawable/bu"/>
<TextView android:text="@string/hello_world"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:padding="40dp"
    android:textSize="45sp"/>
<TextView android:text="Good_Day"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:padding="40dp"
    android:textSize="45sp"/>
</RelativeLayout>
image extension not required....
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".SecondActivity">
<ImageView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:src="@drawable/hello"/>
 <Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="hello"
    android:layout_centerInParent="true"/>

</RelativeLayout>
正如

我所评论的,您需要执行以下操作 -假设您要设置应用程序主屏幕的背景。您可以设置 XML layout的父视图的背景,也可以使用相对布局将ImageView作为底层和其上方的其余视图。现在,您可以根据需要设置ImageView

相关内容

  • 没有找到相关文章

最新更新