Relativelayout 的居中子项
Centring children of Relativelayout
我的相对布局由两张图片组成,我想将布局的子图片居中,以便两张图片并排显示在中间,以适应不同的屏幕 sizes.For 我尝试添加 android:layout_gravity= "center" 和 android:gravity="centre" 但它似乎没有 work.Images 出现在左侧。
<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>
在两个子视图中尝试这个android:gravity="center"
将 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>
像这样试试
<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>
代码中的更改
<?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>
我认为您需要使用 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
如果需要,修改边距或填充以将 space 添加到布局子项
我的相对布局由两张图片组成,我想将布局的子图片居中,以便两张图片并排显示在中间,以适应不同的屏幕 sizes.For 我尝试添加 android:layout_gravity= "center" 和 android:gravity="centre" 但它似乎没有 work.Images 出现在左侧。
<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>
在两个子视图中尝试这个android:gravity="center"
将 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>
像这样试试
<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>
代码中的更改
<?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>
我认为您需要使用 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
如果需要,修改边距或填充以将 space 添加到布局子项