Project

General

Profile

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

magiccube / src / main / res / layout / dialog_updates_pane.xml @ 05f6d7bd

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