Project

General

Profile

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

magiccube / src / main / res / layout / dialog_updates_pane.xml @ 06ba394a

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 06ba394a Leszek Koltunski
   	    android:scaleType="fitXY"
13
   		android:layout_width="0dp"
14
   		android:layout_height="match_parent"
15
   		android:layout_weight="0.5"/>
16 9c39179e Leszek Koltunski
17
   	<LinearLayout
18 06ba394a Leszek Koltunski
   		android:layout_width="0dp"
19 c651024f Leszek Koltunski
 		android:layout_height="match_parent"
20 9c39179e Leszek Koltunski
 		android:orientation="vertical"
21 06ba394a Leszek Koltunski
 		android:layout_marginStart="8dp"
22
 		android:layout_weight="1.0">
23 9c39179e Leszek Koltunski
24
		<TextView
25
    		android:id="@+id/updates_pane_title"
26 2c9ab085 Leszek Koltunski
    		android:gravity="top|start"
27 9c39179e Leszek Koltunski
    		android:layout_width="match_parent"
28
    		android:layout_height="wrap_content"
29 179f7189 Leszek Koltunski
    		android:singleLine="true"
30 9fde123a Leszek Koltunski
    		android:textStyle="bold"/>
31 c651024f Leszek Koltunski
32
        <TextView
33 9c39179e Leszek Koltunski
    		android:id="@+id/updates_pane_description"
34 2c9ab085 Leszek Koltunski
    		android:gravity="top|start"
35 9fde123a Leszek Koltunski
    		android:layout_width="wrap_content"
36 179f7189 Leszek Koltunski
    		android:layout_height="wrap_content"
37
    		android:singleLine="true"/>
38 c651024f Leszek Koltunski
39 9c39179e Leszek Koltunski
    	<Button
40
             android:id="@+id/updates_pane_button"
41 7bee6064 Leszek Koltunski
             android:layout_width="match_parent"
42 9c39179e Leszek Koltunski
             android:layout_height="wrap_content"
43 7bee6064 Leszek Koltunski
             android:backgroundTint="@color/black"
44 2c9ab085 Leszek Koltunski
             android:minHeight="0dp"
45
             android:minWidth="0dp"
46
             android:insetTop="0dp"
47
             android:insetBottom="0dp"
48
             android:text="@string/install"/>
49 c651024f Leszek Koltunski
50 9fde123a Leszek Koltunski
    	<ProgressBar
51
             android:id="@+id/updates_pane_bar"
52
             android:layout_width="match_parent"
53
             android:layout_height="wrap_content"
54
             style="@android:style/Widget.ProgressBar.Horizontal"
55
             android:progressDrawable="@drawable/black_progress"
56
             android:max="100"/>
57
58 9c39179e Leszek Koltunski
 	</LinearLayout>
59
</LinearLayout>