Project

General

Profile

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

magiccube / src / main / res / layout / dialog_updates_pane.xml @ 9c39179e

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:orientation="horizontal"
7
	android:paddingTop="4dp"
8
	android:paddingBottom="4dp">
9

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

    
16
   	<LinearLayout
17
   		android:layout_width="0dp"
18
 		android:layout_height="wrap_content"
19
 		android:layout_weight="1"
20
 		android:orientation="vertical"
21
 		android:layout_gravity="center_vertical">
22

    
23
		<TextView
24
    		android:id="@+id/updates_pane_title"
25
    		android:layout_width="match_parent"
26
    		android:layout_height="wrap_content"
27
    		android:textStyle="bold"/>
28
   		<TextView
29
    		android:id="@+id/updates_pane_version"
30
    		android:layout_width="wrap_content"
31
    		android:layout_height="wrap_content"/>
32
    	<TextView
33
    		android:id="@+id/updates_pane_description"
34
    		android:layout_width="wrap_content"
35
    		android:layout_height="wrap_content"/>
36
    	<Button
37
             android:id="@+id/updates_pane_button"
38
             android:layout_width="wrap_content"
39
             android:layout_height="wrap_content"
40
             android:singleLine="true"
41
             android:gravity="end"/>
42
 	</LinearLayout>
43
</LinearLayout>
(23-23/31)