Project

General

Profile

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

magiccube / src / main / res / layout / dialog_about.xml @ 4634a76a

1 1cbcc6bf Leszek Koltunski
<?xml version="1.0" encoding="utf-8"?>
2 018978ad Leszek Koltunski
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
3 1cbcc6bf Leszek Koltunski
    android:layout_width="match_parent"
4 018978ad Leszek Koltunski
    android:layout_height="match_parent">
5 1cbcc6bf Leszek Koltunski
6
    <LinearLayout
7
        android:layout_width="fill_parent"
8 018978ad Leszek Koltunski
        android:layout_height="wrap_content"
9 1cbcc6bf Leszek Koltunski
        android:gravity="center|fill_horizontal"
10 5560eea9 Leszek Koltunski
        android:layout_marginLeft="10dp"
11
        android:layout_marginRight="10dp"
12 0fd3ac1f Leszek Koltunski
        android:layout_marginTop="0dp"
13 5560eea9 Leszek Koltunski
        android:background="@color/grey"
14 1cbcc6bf Leszek Koltunski
        android:orientation="vertical">
15
16 0fd3ac1f Leszek Koltunski
        <TextView
17
            android:id="@+id/about_version"
18
            android:layout_width="match_parent"
19
            android:layout_height="fill_parent"
20
            android:layout_weight="0.40"
21
            android:layout_marginTop="10dp"
22
            android:layout_marginLeft="10dp"
23
            android:layout_marginRight="10dp"
24
            android:layout_marginBottom="10dp"/>
25
26 1cbcc6bf Leszek Koltunski
        <TextView
27 703aee64 Leszek Koltunski
            android:id="@+id/about_section1"
28 1cbcc6bf Leszek Koltunski
            android:layout_width="match_parent"
29
            android:layout_height="fill_parent"
30 5560eea9 Leszek Koltunski
            android:layout_weight="0.40"
31
            android:layout_marginTop="10dp"
32
            android:layout_marginLeft="10dp"
33
            android:layout_marginRight="10dp"
34 1cbcc6bf Leszek Koltunski
            android:layout_marginBottom="10dp"
35
            android:text="@string/credits1"/>
36
37
        <TextView
38 703aee64 Leszek Koltunski
            android:id="@+id/about_section2"
39 1cbcc6bf Leszek Koltunski
            android:layout_width="match_parent"
40
            android:layout_height="fill_parent"
41 5560eea9 Leszek Koltunski
            android:layout_weight="0.60"
42 1cbcc6bf Leszek Koltunski
            android:layout_marginBottom="10dp"
43
            android:layout_marginTop="10dp"
44 5560eea9 Leszek Koltunski
            android:layout_marginLeft="10dp"
45
            android:layout_marginRight="10dp"
46 1cbcc6bf Leszek Koltunski
            android:text="@string/credits2"/>
47
48
    </LinearLayout>
49
50 018978ad Leszek Koltunski
</ScrollView>