Project

General

Profile

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

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

1
<?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
	android:background="@color/medium_grey"
7
	android:padding="8dp"
8
	android:orientation="horizontal">
9

    
10
   	<ImageView
11
   	    android:id="@+id/updates_pane_image"
12
   	    android:scaleType="fitXY"
13
   		android:layout_width="0dp"
14
   		android:layout_height="match_parent"
15
   		android:layout_weight="0.5"/>
16

    
17
   	<LinearLayout
18
   		android:layout_width="0dp"
19
 		android:layout_height="match_parent"
20
 		android:orientation="vertical"
21
 		android:layout_marginStart="8dp"
22
 		android:layout_weight="1.0">
23

    
24
		<TextView
25
    		android:id="@+id/updates_pane_title"
26
    		android:gravity="top|start"
27
    		android:layout_width="match_parent"
28
    		android:layout_height="wrap_content"
29
    		android:singleLine="true"
30
    		android:textStyle="bold"/>
31

    
32
        <TextView
33
    		android:id="@+id/updates_pane_description"
34
    		android:gravity="top|start"
35
    		android:layout_width="wrap_content"
36
    		android:layout_height="wrap_content"
37
    		android:singleLine="true"/>
38

    
39
    	<Button
40
             android:id="@+id/updates_pane_button"
41
             android:layout_width="match_parent"
42
             android:layout_height="wrap_content"
43
             android:backgroundTint="@color/black"
44
             android:minHeight="0dp"
45
             android:minWidth="0dp"
46
             android:insetTop="0dp"
47
             android:insetBottom="0dp"
48
             android:text="@string/install"/>
49

    
50
    	<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
 	</LinearLayout>
59
</LinearLayout>
(23-23/31)