Project

General

Profile

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

magiccube / src / main / res / layout / credits.xml @ 1cbcc6bf

1
<?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
        android:orientation="vertical">
14

    
15
        <TextView
16
            android:id="@+id/textView1"
17
            android:layout_width="match_parent"
18
            android:layout_height="fill_parent"
19
            android:layout_weight="0.33"
20
            android:layout_marginBottom="10dp"
21
            android:layout_marginTop="50dp"
22
            android:layout_marginLeft="20dp"
23
            android:layout_marginRight="20dp"
24
            android:text="@string/credits1"/>
25

    
26
        <TextView
27
            android:id="@+id/textView2"
28
            android:layout_width="match_parent"
29
            android:layout_height="fill_parent"
30
            android:layout_weight="0.33"
31
            android:layout_marginBottom="10dp"
32
            android:layout_marginTop="10dp"
33
            android:layout_marginLeft="20dp"
34
            android:layout_marginRight="20dp"
35
            android:text="@string/credits2"/>
36

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

    
48
    </LinearLayout>
49

    
50
</LinearLayout>
(1-1/3)