Project

General

Profile

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

magiccube / src / main / res / layout / dialog_about.xml @ 703aee64

1
<?xml version="1.0" encoding="utf-8"?>
2
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
3
    android:layout_width="match_parent"
4
    android:layout_height="match_parent">
5

    
6
    <LinearLayout
7
        android:layout_width="fill_parent"
8
        android:layout_height="wrap_content"
9
        android:gravity="center|fill_horizontal"
10
        android:layout_marginLeft="10dp"
11
        android:layout_marginRight="10dp"
12
        android:layout_marginTop="0dp"
13
        android:background="@color/grey"
14
        android:orientation="vertical">
15

    
16
        <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
        <TextView
27
            android:id="@+id/about_section1"
28
            android:layout_width="match_parent"
29
            android:layout_height="fill_parent"
30
            android:layout_weight="0.40"
31
            android:layout_marginTop="10dp"
32
            android:layout_marginLeft="10dp"
33
            android:layout_marginRight="10dp"
34
            android:layout_marginBottom="10dp"
35
            android:text="@string/credits1"/>
36

    
37
        <TextView
38
            android:id="@+id/about_section2"
39
            android:layout_width="match_parent"
40
            android:layout_height="fill_parent"
41
            android:layout_weight="0.60"
42
            android:layout_marginBottom="10dp"
43
            android:layout_marginTop="10dp"
44
            android:layout_marginLeft="10dp"
45
            android:layout_marginRight="10dp"
46
            android:text="@string/credits2"/>
47

    
48
    </LinearLayout>
49

    
50
</ScrollView>
(1-1/18)