我的相对布局包含两个图像,我想让布局的孩子居中,这样两个图像就会在中心并排调整到不同的屏幕尺寸。为此我尝试添加android:layout_gravity =" center&# 34;和android:gravity =" center"但它似乎不起作用。图像出现在左侧。
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/muteAudio"
android:layout_marginBottom="45dp"
android:layout_gravity="center">
<ImageView
android:id="@+id/signInWithFacebook"
android:layout_width="140dp"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:background="@null"
android:src="@drawable/fb_login_selector"
android:visibility="visible"
/>
<ImageView
android:id="@+id/signInWithGooglePlus"
android:layout_width="140dp"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:background="@null"
android:src="@drawable/gp_login_selector"
android:layout_toRightOf="@+id/signInWithFacebook"
android:layout_marginLeft="10dp"/>
</RelativeLayout>
答案 0 :(得分:1)
您的代码中的更改
<?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="wrap_content"
android:layout_above="@+id/muteAudio"
android:layout_gravity="center_horizontal"
android:layout_marginBottom="45dp" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:orientation="horizontal"
android:weightSum="2" >
<ImageView
android:id="@+id/signInWithFacebook"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:adjustViewBounds="true"
android:background="@null"
android:src="@drawable/fb_login_selector"
android:visibility="visible" />
<ImageView
android:id="@+id/signInWithGooglePlus"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:layout_marginLeft="10dp"
android:layout_weight="1"
android:adjustViewBounds="true"
android:background="@null"
android:src="@drawable/gp_login_selector />
</LinearLayout>
</RelativeLayout>
答案 1 :(得分:0)
在两个子视图中尝试此android:gravity="center"
答案 2 :(得分:0)
将android:layout_centerInParent="true"
添加到您要放置在布局中心的视图中。
使用android:layout_centerHorizontal="true"
水平放置视图
和
使用android:layout_centerVertical="true"
垂直放置视图
试试这个:
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/muteAudio"
android:layout_gravity="center"
android:layout_marginBottom="45dp" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_centerInParent="true"
android:orientation="vertical" >
<ImageView
android:id="@+id/signInWithFacebook"
android:layout_width="140dp"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:background="@null"
android:src="@drawable/fb_login_selector"
android:visibility="visible" />
<ImageView
android:id="@+id/signInWithGooglePlus"
android:layout_width="140dp"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_toRightOf="@+id/signInWithFacebook"
android:adjustViewBounds="true"
android:background="@null"
android:src="@drawable/gp_login_selector" />
</LinearLayout>
答案 3 :(得分:0)
尝试这样
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<LinearLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center" >
<ImageView
android:id="@+id/img1"
android:layout_width="140dp"
android:layout_height="wrap_content"
android:src="your_drawable" />
</LinearLayout>
<LinearLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center" >
<ImageView
android:id="@+id/img2"
android:layout_width="140dp"
android:layout_height="wrap_content"
android:src="your_drawable" />
</LinearLayout>
</LinearLayout>
答案 4 :(得分:0)
我认为您需要使用LinearLayout而不是RelativeLayout。试试这个:
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_above="@+id/muteAudio"
android:layout_marginBottom="45dp"
android:gravity="center_horizontal" >
<ImageView
android:id="@+id/signInWithFacebook"
android:layout_width="140dp"
android:margin="5dp"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:background="@null"
android:src="@drawable/fb_login_selector"
android:visibility="visible" />
<ImageView
android:id="@+id/signInWithGooglePlus"
android:layout_width="140dp"
android:layout_height="wrap_content"
android:margin="5dp"
android:adjustViewBounds="true"
android:background="@null"
android:src="@drawable/gp_login_selector" />
如果您希望图像宽度与屏幕宽度成比例变化,请更改:
android:layout_width="140dp"
为此:
android:layout_width="0dp"
android:layout_height="0.5" //change this value if u want
如果需要,可以修改边距或填充以为布局子项添加空间