Project

General

Profile

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

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

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:layout_marginTop="0dp"
15
        android:background="@color/black"
16
        android:orientation="vertical">
17
18
        <TextView
19 9c39179e Leszek Koltunski
            android:id="@+id/updates_message"
20 2a2ca758 Leszek Koltunski
            android:layout_width="match_parent"
21 9c39179e Leszek Koltunski
            android:layout_height="match_parent"
22
            android:gravity="center"/>
23 2a2ca758 Leszek Koltunski
24
    </LinearLayout>
25
26
</ScrollView>