Project

General

Profile

Download (955 Bytes) Statistics
| Branch: | Tag: | Revision:

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

1
<?xml version="1.0" encoding="utf-8"?>
2
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
3
    android:id="@+id/updates_scroll"
4
    android:layout_width="match_parent"
5
    android:layout_height="wrap_content"
6
    android:paddingLeft="10dp"
7
    android:paddingRight="10dp">
8

    
9
    <LinearLayout
10
        android:id="@+id/updates_main_layout"
11
        android:layout_width="match_parent"
12
        android:layout_height="wrap_content"
13
        android:gravity="center|fill_horizontal"
14
        android:background="@color/black"
15
        android:paddingLeft="10dp"
16
        android:paddingRight="10dp"
17
        android:paddingTop="10dp"
18
        android:paddingBottom="10dp"
19
        android:orientation="vertical">
20

    
21
        <TextView
22
            android:id="@+id/updates_message"
23
            android:layout_width="match_parent"
24
            android:layout_height="match_parent"
25
            android:gravity="center"/>
26

    
27
    </LinearLayout>
28

    
29
</ScrollView>
(22-22/31)