]> rtime.felk.cvut.cz Git - hornmich/skoda-qr-demo.git/blob - QRScanner/glass/src/main/res/layout/activity_preview.xml
1d0d7ea7ebdda0ebb84043703b9167c715920492
[hornmich/skoda-qr-demo.git] / QRScanner / glass / src / main / res / layout / activity_preview.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
3               android:orientation="horizontal"
4               android:layout_width="match_parent"
5               android:layout_height="match_parent">
6
7     <ImageView
8         android:layout_width="match_parent"
9         android:layout_height="match_parent"
10         android:id="@+id/imgComponent"
11         android:layout_gravity="center_horizontal"
12         android:scaleType="center"
13         android:contentDescription="@string/preview_content_desc"/>
14
15     <RelativeLayout
16         android:layout_width="73dp"
17         android:layout_height="match_parent"
18         android:id="@+id/progress_container"
19         android:layout_alignParentTop="true"
20         android:layout_alignParentEnd="true"
21         android:layout_alignParentStart="true">
22
23         <ProgressBar
24             style="?android:attr/progressBarStyleLarge"
25             android:layout_width="wrap_content"
26             android:layout_height="wrap_content"
27             android:id="@+id/progressBar2"
28             android:layout_centerVertical="true"
29             android:layout_centerHorizontal="true"/>
30
31         <TextView
32             android:layout_width="wrap_content"
33             android:layout_height="wrap_content"
34             android:textAppearance="?android:attr/textAppearanceMedium"
35             android:text="@string/loading_page"
36             android:id="@+id/textView5"
37             android:layout_below="@+id/progressBar2"
38             android:layout_alignStart="@+id/progressBar2"/>
39     </RelativeLayout>
40
41 </RelativeLayout>