Project

General

Profile

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

magiccube / src / main / res / layout / dialog_updates_pane.xml @ 99b8a069

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/grey"
7
	android:padding="8dp"
8
	android:orientation="horizontal">
9

    
10
   	<ImageView
11
   	    android:id="@+id/updates_pane_image"
12
   	    android:scaleType="fitCenter"
13
   		android:layout_width="wrap_content"
14
   		android:layout_height="wrap_content"/>
15

    
16
   	<LinearLayout
17
   		android:layout_width="match_parent"
18
 		android:layout_height="match_parent"
19
 		android:orientation="vertical"
20
 		android:layout_marginStart="8dp"
21

    
22
 		android:layout_gravity="center_vertical">
23

    
24
		<TextView
25
    		android:id="@+id/updates_pane_title"
26
    		android:gravity="center_vertical"
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="center_vertical"
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:text="@string/install"
45
             android:gravity="center"/>
46

    
47
 	</LinearLayout>
48
</LinearLayout>
(23-23/31)