Android PreferenceScreen 叠加工具栏
Android PreferenceScreen overlay Toolbar
Android PreferenceScreen 叠加工具栏。
我尝试使用填充和边距在
工具栏但没有任何成功。
注意:将 Toolbar 更改为 ActionBar 后,它会按预期工作。
请帮忙。
谢谢,
赫拉赫
我刚刚解决了这个问题:
代码如下:
<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 后问题解决。
谢谢
Android PreferenceScreen 叠加工具栏。 我尝试使用填充和边距在 工具栏但没有任何成功。
注意:将 Toolbar 更改为 ActionBar 后,它会按预期工作。
请帮忙。
谢谢, 赫拉赫
我刚刚解决了这个问题:
代码如下:
<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 后问题解决。
谢谢