查看重叠工具栏

时间:2016-06-01 11:24:10

标签: android android-toolbar

我正在尝试使用必须与其他视图重叠的透明工具栏。但相反,其他视图重叠工具栏。

enter image description here

在xml中,我特意使用了margintop来显示重叠的RelativeLayout。实际上我不会将marginTop用于RelativeLayout。

XML

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:tools="http://schemas.android.com/tools"
    tools:context=".activity.activitys.ActivityImage">
    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        android:gravity="center">

        <android.support.v7.widget.AppCompatTextView
            android:id="@+id/action_bar_text"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Фото"/>
    </android.support.v7.widget.Toolbar>

    <RelativeLayout
        android:layout_marginTop="30dp"
        android:id="@+id/img_slideshow_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/img_border"
        >
        <android.support.v4.view.ViewPager
            android:id="@+id/viewpager"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            />
        <kz.dreamwings.zhaksyadam.activity.util.CircleIndicator
            android:id="@+id/indicator"
            android:layout_width="fill_parent"
            android:layout_height="55dp"
            android:padding="3dip"
            android:background="#99000000"
            android:layout_above="@+id/img_name"
            android:layout_alignParentRight="true"
            android:layout_alignParentEnd="true"
            android:layout_alignParentBottom="true"/>
    </RelativeLayout>

</FrameLayout>

3 个答案:

答案 0 :(得分:1)

您正在使用FrameLayout,这主要是为了容纳一个孩子。你无法在FrameLayout中管理儿童的排列。 你的布局应该是这样的。

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true">

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/AppTheme.AppBarOverlay">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            android:gravity="center">

            <android.support.v7.widget.AppCompatTextView
                android:id="@+id/action_bar_text"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Фото" />
        </android.support.v7.widget.Toolbar>

    </android.support.design.widget.AppBarLayout>

    <android.support.v4.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:descendantFocusability="blocksDescendants"
        android:scrollbars="none"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">

        <RelativeLayout
            android:id="@+id/img_slideshow_layout"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@drawable/img_border">

            <android.support.v4.view.ViewPager
                android:id="@+id/viewpager"
                android:layout_width="match_parent"
                android:layout_height="match_parent" />

            <kz.dreamwings.zhaksyadam.activity.util.CircleIndicator
                android:id="@+id/indicator"
                android:layout_width="fill_parent"
                android:layout_height="55dp"
                android:layout_above="@+id/img_name"
                android:layout_alignParentBottom="true"
                android:layout_alignParentEnd="true"
                android:layout_alignParentRight="true"
                android:background="#99000000"
                android:padding="3dip" />
        </RelativeLayout>

    </android.support.v4.widget.NestedScrollView>


</android.support.design.widget.CoordinatorLayout>

答案 1 :(得分:0)

像这样更改你的代码:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:tools="http://schemas.android.com/tools"
    android:background="@drawable/img_border"
    tools:context=".activity.activitys.ActivityImage">
    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="@android:color/transparent"
        android:gravity="center">

        <android.support.v7.widget.AppCompatTextView
            android:id="@+id/action_bar_text"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Фото"/>
    </android.support.v7.widget.Toolbar>

    <RelativeLayout
        android:layout_marginTop="30dp"
        android:id="@+id/img_slideshow_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        >
        .
        .
        .

答案 2 :(得分:0)

尝试此操作:在相对布局后添加工具栏并删除上边距 .i.e:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:tools="http://schemas.android.com/tools"
    tools:context=".activity.activitys.ActivityImage">


    <RelativeLayout
        android:id="@+id/img_slideshow_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/img_border"
        >
        <android.support.v4.view.ViewPager
            android:id="@+id/viewpager"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            />
        <kz.dreamwings.zhaksyadam.activity.util.CircleIndicator
            android:id="@+id/indicator"
            android:layout_width="fill_parent"
            android:layout_height="55dp"
            android:padding="3dip"
            android:background="#99000000"
            android:layout_above="@+id/img_name"
            android:layout_alignParentRight="true"
            android:layout_alignParentEnd="true"
            android:layout_alignParentBottom="true"/>
    </RelativeLayout>
    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        android:gravity="center">

        <android.support.v7.widget.AppCompatTextView
            android:id="@+id/action_bar_text"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Фото"/>
    </android.support.v7.widget.Toolbar>

</FrameLayout>