这张图片http://postimg.org/image/h8akuq9gz/应该让你知道我想要什么。无论设备处于垂直或水平位置,这两个“圆圈”必须始终位于中间。
我真的不知道我怎么能做到这一点。你能给我指个方向吗?谢谢!
这张图片http://postimg.org/image/h8akuq9gz/应该让你知道我想要什么。无论设备处于垂直或水平位置,这两个“圆圈”必须始终位于中间。
我真的不知道我怎么能做到这一点。你能给我指个方向吗?谢谢!
为什么不在根布局上使用重力,例如:
<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>
采用
<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>
你可以试试这个:这个例子是图像按钮,但你可以根据你的意愿尝试
<?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>
<?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>