Project

General

Profile

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

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

1 2a2ca758 Leszek Koltunski
<?xml version="1.0" encoding="utf-8"?>
2
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
3 9c39179e Leszek Koltunski
    android:id="@+id/updates_scroll"
4 2a2ca758 Leszek Koltunski
    android:layout_width="match_parent"
5 9c39179e Leszek Koltunski
    android:layout_height="wrap_content"
6
    android:paddingLeft="10dp"
7
    android:paddingRight="10dp">
8 2a2ca758 Leszek Koltunski
9
    <LinearLayout
10
        android:id="@+id/updates_main_layout"
11 9c39179e Leszek Koltunski
        android:layout_width="match_parent"
12 2a2ca758 Leszek Koltunski
        android:layout_height="wrap_content"
13
        android:gravity="center|fill_horizontal"
14
        android:background="@color/black"
15 7bee6064 Leszek Koltunski
        android:paddingLeft="10dp"
16
        android:paddingRight="10dp"
17
        android:paddingTop="10dp"
18
        android:paddingBottom="10dp"
19 2a2ca758 Leszek Koltunski
        android:orientation="vertical">
20
21
        <TextView
22 9c39179e Leszek Koltunski
            android:id="@+id/updates_message"
23 2a2ca758 Leszek Koltunski
            android:layout_width="match_parent"
24 9c39179e Leszek Koltunski
            android:layout_height="match_parent"
25
            android:gravity="center"/>
26 2a2ca758 Leszek Koltunski
27
    </LinearLayout>
28
29
</ScrollView>