我使用线性布局来显示一个漂亮的初始屏幕。它有1个按钮,应该在屏幕水平和垂直的中心。然而,无论我试图做什么按钮将顶部对齐中心。我已经包括了下面的XML,可以一点点我在正确的方向吗?
谢谢
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> <ImageButton android:id="@+id/btnFindMe" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center_vertical|center_horizontal" android:background="@drawable/findme"></ImageButton> </LinearLayout>
如果要将某个项目置于屏幕中央,请不要使用LinearLayout,因为这些用于在一行中显示多个项目。
原文链接:/xml/294356.html所以替换:
android:layout_gravity="center_vertical|center_horizontal"
对于相关RelativeLayout选项:
android:layout_centerInParent="true"
所以你的布局文件将如下所示:
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout android:id="@+id/RelativeLayout01" android:layout_width="fill_parent" android:layout_height="fill_parent" xmlns:android="http://schemas.android.com/apk/res/android"> <ImageButton android:id="@+id/btnFindMe" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerInParent="true" android:background="@drawable/findme"></ImageButton> </RelativeLayout>