Project

General

Profile

Download (1.43 KB) Statistics
| Branch: | Tag: | Revision:

magiccube / src / main / res / layout / dialog_updates_started.xml @ 2c9ab085

1 9c39179e Leszek Koltunski
<?xml version="1.0" encoding="utf-8"?>
2
<LinearLayout
3
	xmlns:android="http://schemas.android.com/apk/res/android"
4
	android:layout_width="match_parent"
5
	android:layout_height="wrap_content"
6 2c9ab085 Leszek Koltunski
	android:background="@color/medium_grey"
7 c651024f Leszek Koltunski
	android:padding="8dp"
8 7bee6064 Leszek Koltunski
	android:orientation="horizontal">
9 9c39179e Leszek Koltunski
10
   	<ImageView
11 c651024f Leszek Koltunski
   	    android:id="@+id/updates_pane_image"
12
   	    android:scaleType="fitCenter"
13 9c39179e Leszek Koltunski
   		android:layout_width="wrap_content"
14 c651024f Leszek Koltunski
   		android:layout_height="wrap_content"/>
15 9c39179e Leszek Koltunski
16
   	<LinearLayout
17 7bee6064 Leszek Koltunski
   		android:layout_width="match_parent"
18 c651024f Leszek Koltunski
 		android:layout_height="match_parent"
19 9c39179e Leszek Koltunski
 		android:orientation="vertical"
20 2c9ab085 Leszek Koltunski
 		android:layout_marginStart="8dp">
21 9c39179e Leszek Koltunski
22
		<TextView
23
    		android:id="@+id/updates_pane_title"
24 2c9ab085 Leszek Koltunski
    		android:gravity="top|start"
25 9c39179e Leszek Koltunski
    		android:layout_width="match_parent"
26
    		android:layout_height="wrap_content"
27 179f7189 Leszek Koltunski
    		android:singleLine="true"
28 9c39179e Leszek Koltunski
    		android:textStyle="bold"/>
29 c651024f Leszek Koltunski
30
        <TextView
31 9c39179e Leszek Koltunski
    		android:id="@+id/updates_pane_description"
32 2c9ab085 Leszek Koltunski
    		android:gravity="top|start"
33 9c39179e Leszek Koltunski
    		android:layout_width="wrap_content"
34 179f7189 Leszek Koltunski
    		android:layout_height="wrap_content"
35
    		android:singleLine="true"/>
36 c651024f Leszek Koltunski
37 2c9ab085 Leszek Koltunski
    	<ProgressBar
38
             android:id="@+id/updates_pane_bar"
39 7bee6064 Leszek Koltunski
             android:layout_width="match_parent"
40 9c39179e Leszek Koltunski
             android:layout_height="wrap_content"
41 2c9ab085 Leszek Koltunski
             style="@android:style/Widget.ProgressBar.Horizontal"
42
             android:progressDrawable="@drawable/black_progress"
43
             android:max="100"/>
44 c651024f Leszek Koltunski
45 9c39179e Leszek Koltunski
 	</LinearLayout>
46
</LinearLayout>