此图片http://postimg.org/image/h8akuq9gz/应该可以让您了解我想要的内容。 无论设备处于垂直位置还是水平位置,这两个“圆圈”必须始终位于中间位置。
我真的不知道如何实现这一目标。你能指点我的方向吗?谢谢!
答案 0 :(得分:2)
为什么不在根布局上使用重力,例如:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:gravity="center_vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<Button
android:layout_height="wrap_content"
android:layout_width="fill_parent"/>
<Button
android:layout_height="wrap_content"
android:layout_width="fill_parent"/>
</LinearLayout>
答案 1 :(得分:0)
使用
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
gravity="center">
<--Other contorls you want to keep in center-->
</RelativeLayout>
答案 2 :(得分:0)
你可以尝试这个:例子是图像按钮,但你可以按照自己的意愿尝试
<?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>
答案 3 :(得分:0)
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/RelativeLayout01"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center"
android:layout_gravity="center"
>
<ImageButton
android:id="@+id/img_btn1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:background="@drawable/img_1">
</ImageButton>
<ImageButton
android:id="@+id/img_btn2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:background="@drawable/img_2">
</ImageButton>
</RelativeLayout>