blob: 713cee49de538033e388c72c1891982c8f8c2703 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<View
android:id="@+id/bg_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/starry_night_bg" />
<LinearLayout
android:id="@+id/my_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<View
android:id="@+id/from_left"
android:layout_width="match_parent"
android:layout_height="48dip"
android:background="#7000FF00" />
<View
android:id="@+id/from_right"
android:layout_width="match_parent"
android:layout_height="0dip"
android:layout_margin="80dip"
android:layout_weight="1"
android:background="#90FF0000" />
<View
android:id="@+id/from_left"
android:layout_width="match_parent"
android:layout_height="48dip"
android:background="#7000FF00" />
</LinearLayout>
</FrameLayout>
|