布局未与父视图的中心对齐

时间:2015-04-03 21:43:17

标签: android android-view android-framelayout

我试图将两个线性布局中间的圆形图像与不同的颜色对齐,但由于某种原因,视图不对齐中心
但是坚持在左边,在它下面我想要放置一个片段。有什么帮助吗?

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="3"
        android:orientation="vertical" >

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical" >

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="0dip"
                android:layout_weight="1"
                android:background="#1b96d9"
                android:orientation="vertical" >
            </LinearLayout>

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="0dp"
                android:layout_weight="1"
                android:background="#e6e6e6"
                android:orientation="vertical" >
            </LinearLayout>
        </LinearLayout>

        <com.mikhaellopez.circularimageview.CircularImageView
            xmlns:app="http://schemas.android.com/apk/res-auto"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_margin="10dp"
            android:gravity="center"
            android:src="@drawable/doge"
            app:border_color="#EEEEEE"
            app:border_width="4dp"
            app:shadow="true" />

    </FrameLayout>

    <LinearLayout
        android:id="@+id/calendarCard1"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="7"
        android:background="#e6e6e6" />

</LinearLayout>

2 个答案:

答案 0 :(得分:0)

为什么不使用相对布局而不是那么多嵌套的线性布局。使用相对布局简单而有效。检查此http://www.mkyong.com/android/android-relativelayout-example/以了解相对布局

答案 1 :(得分:0)

您的圆形图片布局与FrameLayout一起位于LinearLayout内。 FrameLayout基本上将所有孩子放在另一个孩子身上。