Android:将相对布局与中心对齐

时间:2015-06-29 10:16:11

标签: android

疯狂地尝试将整个相对布局对齐到屏幕中心。

这是我需要对齐的dashboard_fragment:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_centerHorizontal="true"
    android:layout_centerVertical="true"
    android:layout_width="fill_parent"
    android:layout_height="?android:attr/listPreferredItemHeight"
    android:padding="6dip">

    <TextView
        android:id="@+id/counter_day"
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:layout_alignParentTop="true"
        android:layout_alignParentBottom="true"
        android:layout_marginRight="6dip" />

    <TextView
        android:id="@+id/next_event_placeholder"
        android:layout_width="fill_parent"
        android:layout_height="26dip"
        android:layout_toRightOf="@id/counter_day"
        android:layout_alignParentBottom="true"
        android:layout_alignParentRight="true"
        android:singleLine="true"
        android:ellipsize="marquee" />

    <TextView
        android:id="@+id/last_event_placeholder"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_toRightOf="@id/counter_day"
        android:layout_alignParentRight="true"
        android:layout_alignParentTop="true"
        android:layout_above="@id/next_event_placeholder"
        android:layout_alignWithParentIfMissing="true"
        android:gravity="center_vertical"
        android:text="My Application" />

</RelativeLayout>

这是一个片段,注入base_layout:

<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/drawer"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    tools:context=".MainActivity">

    <LinearLayout
        android:layout_height="match_parent"
        android:layout_width="match_parent"
        android:orientation="vertical"
        >
        <include
            android:id="@+id/toolbar"
            layout="@layout/toolbar"
            />
        <FrameLayout
            android:id="@+id/frame"
            android:layout_width="match_parent"
            android:layout_height="match_parent">

        </FrameLayout>

    </LinearLayout>
    <!--
        IF YOU NEED HEADER:
        app:headerLayout="@layout/drawer_header"
    -->
    <android.support.design.widget.NavigationView
        android:id="@+id/navigation_view"
        android:layout_height="match_parent"
        android:layout_width="wrap_content"
        android:layout_gravity="start"
        app:menu="@menu/drawer"
        />
</android.support.v4.widget.DrawerLayout>

这是一个非常基本的布局,我会:

enter image description here

但目前我的布局位于屏幕的左上角。

非常感谢。

2 个答案:

答案 0 :(得分:0)

在RelativeLayout上使用android:layout_gravity="center",或在FrameLayout上使用android:gravity="center"(或两者)。

答案 1 :(得分:0)

像这样修改:

   <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:layout_width="fill_parent"
android:layout_gravity="center"
android:layout_height="?android:attr/listPreferredItemHeight"
android:padding="6dip">

<TextView
    android:id="@+id/counter_day"
    android:layout_width="wrap_content"
    android:layout_height="fill_parent"
    android:layout_alignParentTop="true"
    android:layout_alignParentBottom="true"
    android:layout_marginRight="6dip" />

<TextView
    android:id="@+id/next_event_placeholder"
    android:layout_width="fill_parent"
    android:layout_height="26dip"
    android:layout_toRightOf="@id/counter_day"
    android:layout_alignParentBottom="true"
    android:layout_alignParentRight="true"
    android:singleLine="true"
    android:ellipsize="marquee" />

<TextView
    android:id="@+id/last_event_placeholder"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_toRightOf="@id/counter_day"
    android:layout_alignParentRight="true"
    android:layout_alignParentTop="true"
    android:layout_above="@id/next_event_placeholder"
    android:layout_alignWithParentIfMissing="true"
    android:gravity="center_vertical"
    android:text="My Application" />

 </RelativeLayout>

只有你必须将重力放在相对布局上。