Project

General

Profile

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

magiccube / src / main / res / layout / dialog_updates_pane.xml @ 7bee6064

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 7bee6064 Leszek Koltunski
	android:layout_margin="10dp"
7
	android:background="@color/grey"
8
	android:orientation="horizontal">
9 9c39179e Leszek Koltunski
10
   	<ImageView
11
   		android:id="@+id/updates_pane_image"
12
   		android:layout_width="wrap_content"
13
   		android:layout_height="wrap_content"
14 7bee6064 Leszek Koltunski
   		android:layout_margin="10dp"/>
15 9c39179e Leszek Koltunski
16
   	<LinearLayout
17 7bee6064 Leszek Koltunski
   		android:layout_width="match_parent"
18 9c39179e Leszek Koltunski
 		android:layout_height="wrap_content"
19
 		android:orientation="vertical"
20
 		android:layout_gravity="center_vertical">
21
22
		<TextView
23
    		android:id="@+id/updates_pane_title"
24
    		android:layout_width="match_parent"
25
    		android:layout_height="wrap_content"
26
    		android:textStyle="bold"/>
27
   		<TextView
28
    		android:id="@+id/updates_pane_version"
29
    		android:layout_width="wrap_content"
30
    		android:layout_height="wrap_content"/>
31
    	<TextView
32
    		android:id="@+id/updates_pane_description"
33
    		android:layout_width="wrap_content"
34
    		android:layout_height="wrap_content"/>
35
    	<Button
36
             android:id="@+id/updates_pane_button"
37 7bee6064 Leszek Koltunski
             android:layout_width="match_parent"
38 9c39179e Leszek Koltunski
             android:layout_height="wrap_content"
39 7bee6064 Leszek Koltunski
             android:backgroundTint="@color/black"
40
             android:layout_marginEnd="10dp"
41
             android:text="@string/install"
42
             android:gravity="center_vertical"/>
43 9c39179e Leszek Koltunski
 	</LinearLayout>
44
</LinearLayout>