6350
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
|
2 |
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
6433
|
3 |
android:layout_width="fill_parent"
|
|
4 |
android:layout_height="fill_parent"
|
6350
|
5 |
android:orientation="horizontal"
|
|
6 |
android:gravity="center_vertical">
|
|
7 |
<ImageView
|
|
8 |
android:id="@+id/arrow"
|
6433
|
9 |
android:layout_width="fill_parent"
|
6350
|
10 |
android:layout_height="wrap_content"
|
|
11 |
android:layout_weight="8"
|
|
12 |
android:src="@drawable/arrow"
|
|
13 |
android:adjustViewBounds="true"/>
|
|
14 |
|
|
15 |
<RelativeLayout
|
|
16 |
android:id="@+id/container"
|
6433
|
17 |
android:layout_width="fill_parent"
|
|
18 |
android:layout_height="fill_parent"
|
6350
|
19 |
android:layout_weight="1"
|
|
20 |
android:gravity="center"
|
|
21 |
android:background="@drawable/box_dark">
|
|
22 |
<TextView
|
|
23 |
android:id="@+id/text"
|
|
24 |
android:layout_width="wrap_content"
|
|
25 |
android:layout_height="wrap_content"
|
|
26 |
android:text="This package will higher quality sounds better sounds"/>
|
|
27 |
|
|
28 |
<Button
|
|
29 |
android:id="@+id/download"
|
|
30 |
android:layout_width="wrap_content"
|
|
31 |
android:layout_height="wrap_content"
|
|
32 |
android:layout_alignLeft="@id/text"
|
|
33 |
android:layout_below="@id/text"
|
|
34 |
android:text="@string/download_downloadnow"/>
|
|
35 |
<Button
|
|
36 |
android:id="@+id/cancel"
|
|
37 |
android:layout_width="wrap_content"
|
|
38 |
android:layout_height="wrap_content"
|
|
39 |
android:layout_alignRight="@id/text"
|
|
40 |
android:layout_below="@id/text"
|
|
41 |
android:text="@android:string/no"/>
|
|
42 |
|
|
43 |
</RelativeLayout>
|
|
44 |
|
|
45 |
|
6433
|
46 |
</LinearLayout>
|