RelativeLayout力重叠

时间:2013-11-11 17:28:38

标签: android android-layout layout relativelayout

我在让RelativeLayout上的组件按我的意愿出现时遇到问题。

我希望在ScrollView前面创建一个静态布局。我正在寻找的效果类似于'One Today'应用程序(底部的控件保持原位,以及项目 - 在这种情况下,男孩饮用水 - 滚动'在'栏后面'。)

enter image description here

在我现在使用的布局中,顶部元素(具有id:top_control_ll的LinearLayout)根本不显示。 ScrollView中包含的所有内容都显示出来,但不是条形图(我希望根据我设置的属性将其锁定在主RelativeLayout的顶部):

<?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="match_parent"
    android:background="@color/second_grey"
    android:overScrollMode="always" >

    <LinearLayout
        android:id="@+id/top_control_ll"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:orientation="horizontal"
        android:baselineAligned="false" >

        <Button
            android:id="@+id/app_download2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:drawableLeft="@drawable/play_icon"
            android:text="@string/download"
            android:textColor="@color/download_button_color"
            android:textStyle="bold" />
    </LinearLayout>

    <ScrollView
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:background="@color/second_grey" >

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:background="@color/second_grey"
            android:orientation="vertical" >

            <!-- Title -->
            <RelativeLayout
                android:id="@+id/title_layout"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:orientation="vertical" >

                <TextView
                    android:id="@+id/app_title"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:gravity="center_horizontal"
                    android:text="@string/app_title" />

                <ImageView
                    android:id="@+id/app_icon"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_alignParentLeft="true"
                    android:layout_below="@+id/app_title" />

                <TextView
                    android:id="@+id/app_dotdcomment"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_alignParentRight="true"
                    android:layout_below="@+id/app_title"
                    android:layout_centerVertical="true"
                    android:layout_marginRight="8dp"
                    android:layout_toRightOf="@+id/app_icon" />
            </RelativeLayout>

            <LinearLayout
                android:id="@+id/icon_button_ll"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:background="@drawable/big_card"
                android:orientation="horizontal"
                android:padding="16dp" >

                <ImageView
                    android:id="@+id/app_iconx"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_gravity="center"
                    android:layout_marginRight="20dp"
                    android:layout_weight="1" />

                <RelativeLayout
                    android:id="@+id/button_rl"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_weight="1"
                    android:orientation="horizontal" >

                    <Button
                        android:id="@+id/app_download"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:background="@drawable/blue_button"
                        android:drawableLeft="@drawable/play_icon"
                        android:text="@string/download" />

                    <ImageButton
                        android:id="@+id/app_like"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_below="@+id/app_download"
                        android:background="@null" />

                    <ImageButton
                        android:id="@+id/app_hate"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_below="@+id/app_download"
                        android:layout_toRightOf="@+id/app_like"
                        android:background="@null" />
                </RelativeLayout>
            </LinearLayout>

            <!-- Screens -->

            <HorizontalScrollView
                android:id="@+id/app_screens_layout"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_below="@+id/title_layout"
                android:background="@drawable/big_card" >

                <LinearLayout
                    android:id="@+id/screens_layout"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:orientation="horizontal" >

                    <ImageView
                        android:id="@+id/screen1"
                        android:layout_width="150dp"
                        android:layout_height="250dp"
                        android:layout_marginLeft="8dp"
                        android:layout_marginRight="8dp" />

                    <ImageView
                        android:id="@+id/screen2"
                        android:layout_width="150dp"
                        android:layout_height="250dp"
                        android:layout_marginLeft="8dp"
                        android:layout_marginRight="8dp" />

                    <ImageView
                        android:id="@+id/screen3"
                        android:layout_width="150dp"
                        android:layout_height="250dp"
                        android:layout_marginLeft="8dp"
                        android:layout_marginRight="8dp" />

                    <ImageView
                        android:id="@+id/screen4"
                        android:layout_width="150dp"
                        android:layout_height="250dp"
                        android:layout_marginLeft="8dp"
                        android:layout_marginRight="8dp" />

                    <ImageView
                        android:id="@+id/screen5"
                        android:layout_width="150dp"
                        android:layout_height="250dp"
                        android:layout_marginLeft="8dp"
                        android:layout_marginRight="8dp" />
                </LinearLayout>
            </HorizontalScrollView>

        </LinearLayout>
    </ScrollView>

</RelativeLayout>

0 个答案:

没有答案