|
0
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
|
|
2 |
<RelativeLayout
|
|
|
3 |
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
4 |
xmlns:hh="http://schemas.android.com/apk/res-auto"
|
|
|
5 |
android:id="@+id/main"
|
|
|
6 |
android:layout_width="match_parent"
|
|
|
7 |
android:layout_height="match_parent"
|
|
|
8 |
android:background="#000"
|
|
|
9 |
>
|
|
|
10 |
|
|
|
11 |
<FrameLayout
|
|
|
12 |
android:id="@+id/title_bar"
|
|
|
13 |
android:layout_width="match_parent"
|
|
|
14 |
android:layout_height="wrap_content"
|
|
|
15 |
/>
|
|
|
16 |
|
|
|
17 |
<FrameLayout
|
|
|
18 |
android:id="@+id/panel"
|
|
|
19 |
android:layout_width="match_parent"
|
|
|
20 |
android:layout_height="match_parent"
|
|
|
21 |
android:layout_below="@id/title_bar"
|
|
|
22 |
/>
|
|
|
23 |
|
|
|
24 |
</RelativeLayout>
|
|
|
25 |
|
|
|
26 |
|