Android PreferenceScreen叠加工具栏。 我试图使用填充和边距来设置首选项屏幕 工具栏但没有任何成功。
注意:使用ActionBar更改工具栏后,它会按预期工作。
请帮助。
谢谢, Hrach
答案 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后,问题就解决了。
由于