如何将项目位置设置为 bottomcenter launchbackground.xml
How to set item position to bottomcenter launchbackground.xml
我试图将图像添加到我的应用启动画面,但我不知道如何将其重力设置为底部中心。这是我的代码:
<item
android:width="265dp"
android:height="160dp"
android:drawable="@mipmap/bottomsplash"
android:gravity="bottom" />
底部重力将它设置在左下角,但我希望它位于底部中心。
试试这个
android:gravity="bottom|center"
试试这个:
<?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">
<ImageView
android:width="265dp"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:height="160dp"
android:drawable="@mipmap/bottomsplash"
android:layout_marginBottom="50dp" />
</RelativeLayout>
我试图将图像添加到我的应用启动画面,但我不知道如何将其重力设置为底部中心。这是我的代码:
<item
android:width="265dp"
android:height="160dp"
android:drawable="@mipmap/bottomsplash"
android:gravity="bottom" />
底部重力将它设置在左下角,但我希望它位于底部中心。
试试这个
android:gravity="bottom|center"
试试这个:
<?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">
<ImageView
android:width="265dp"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:height="160dp"
android:drawable="@mipmap/bottomsplash"
android:layout_marginBottom="50dp" />
</RelativeLayout>