summaryrefslogtreecommitdiff
path: root/build/android/src/main/res/layout/assetcopy.xml
blob: 1fcfffd65e39eb08a76f0d73462c7e38508d8b33 (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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <ProgressBar
        android:id="@+id/progressBar1"
        style="?android:attr/progressBarStyleHorizontal"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical" />

    <TextView
        android:id="@+id/textView1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:ellipsize="middle" 
        android:singleLine="true"
        android:layout_gravity="center_horizontal"
        android:text="@string/preparing_media"
        android:textAppearance="?android:attr/textAppearanceSmall" />

</LinearLayout>