Project

General

Profile

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

magiccube / src / main / res / layout / dialog_updates_pane.xml @ 0a9adc31

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 840ad93e leszek
	android:background="?mediumC"
7 c651024f Leszek Koltunski
	android:padding="8dp"
8 5ba1740c leszek
	android:orientation="horizontal"
9
	android:baselineAligned="false">
10 9c39179e Leszek Koltunski
11 58d6a40d Leszek Koltunski
    <LinearLayout
12 06ba394a Leszek Koltunski
   		android:layout_width="0dp"
13 58d6a40d Leszek Koltunski
 		android:layout_height="match_parent"
14
 		android:orientation="horizontal"
15
 		android:layout_weight="0.5">
16
17
   	    <ImageView
18
   	        android:id="@+id/updates_pane_image"
19
   	        android:scaleType="fitCenter"
20
   		    android:layout_width="match_parent"
21
   		    android:layout_height="match_parent"/>
22
    </LinearLayout>
23 9c39179e Leszek Koltunski
24
   	<LinearLayout
25 06ba394a Leszek Koltunski
   		android:layout_width="0dp"
26 c651024f Leszek Koltunski
 		android:layout_height="match_parent"
27 9c39179e Leszek Koltunski
 		android:orientation="vertical"
28 06ba394a Leszek Koltunski
 		android:layout_marginStart="8dp"
29
 		android:layout_weight="1.0">
30 9c39179e Leszek Koltunski
31
		<TextView
32
    		android:id="@+id/updates_pane_title"
33 2c9ab085 Leszek Koltunski
    		android:gravity="top|start"
34 9c39179e Leszek Koltunski
    		android:layout_width="match_parent"
35
    		android:layout_height="wrap_content"
36 179f7189 Leszek Koltunski
    		android:singleLine="true"
37 9fde123a Leszek Koltunski
    		android:textStyle="bold"/>
38 c651024f Leszek Koltunski
39
        <TextView
40 9c39179e Leszek Koltunski
    		android:id="@+id/updates_pane_description"
41 2c9ab085 Leszek Koltunski
    		android:gravity="top|start"
42 9fde123a Leszek Koltunski
    		android:layout_width="wrap_content"
43 179f7189 Leszek Koltunski
    		android:layout_height="wrap_content"
44
    		android:singleLine="true"/>
45 c651024f Leszek Koltunski
46 9c39179e Leszek Koltunski
    	<Button
47
             android:id="@+id/updates_pane_button"
48 7bee6064 Leszek Koltunski
             android:layout_width="match_parent"
49 9c39179e Leszek Koltunski
             android:layout_height="wrap_content"
50 8c4e4bf4 leszek
             android:backgroundTint="?veryDarkC"
51 2c9ab085 Leszek Koltunski
             android:minHeight="0dp"
52
             android:minWidth="0dp"
53
             android:insetTop="0dp"
54
             android:insetBottom="0dp"
55
             android:text="@string/install"/>
56 c651024f Leszek Koltunski
57 9fde123a Leszek Koltunski
    	<ProgressBar
58
             android:id="@+id/updates_pane_bar"
59
             android:layout_width="match_parent"
60
             android:layout_height="wrap_content"
61
             style="@android:style/Widget.ProgressBar.Horizontal"
62 8c4e4bf4 leszek
             android:progressDrawable="@drawable/progress_bar"
63 9fde123a Leszek Koltunski
             android:max="100"/>
64
65 9c39179e Leszek Koltunski
 	</LinearLayout>
66
</LinearLayout>