21 lines
621 B
XML
21 lines
621 B
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
style="@style/immersion_status"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:background="#af895b"
|
||
|
|
android:id="@+id/llRoot"
|
||
|
|
android:fitsSystemWindows="true"
|
||
|
|
android:orientation="vertical">
|
||
|
|
|
||
|
|
<!-- Title -->
|
||
|
|
|
||
|
|
<include layout="@layout/public_titlebar" />
|
||
|
|
|
||
|
|
<FrameLayout
|
||
|
|
android:id="@+id/layout_content"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
></FrameLayout>
|
||
|
|
|
||
|
|
</LinearLayout>
|