Android PreferenceScreen叠加工具栏

时间:2017-04-09 18:07:50

标签: android android-layout android-toolbar preference preferencescreen

Android PreferenceScreen叠加工具栏。 我试图使用填充和边距来设置首选项屏幕 工具栏但没有任何成功。

注意:使用ActionBar更改工具栏后,它会按预期工作。

请帮助。

谢谢, Hrach

1 个答案:

答案 0 :(得分:0)

我刚才解决了这个问题:

以下是代码:

<RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <include layout="@layout/app_toolbar"
             android:id="@+id/app_toolbar" />

        <FrameLayout
            android:id="@+id/pref_content"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_below="@id/app_toolbar" />

        <!-- The main content view -->
        <FrameLayout
            android:id="@+id/content_frame"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:paddingTop="?attr/actionBarSize"/>

    </RelativeLayout>

添加第一个FrameLayout后,问题就解决了。

由于