Project

General

Profile

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

magiccube / src / main / res / layout / dialog_about.xml @ 95292d05

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