Project

General

Profile

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

magiccube / src / main / res / layout / level_row.xml @ b8b38548

1
<?xml version="1.0" encoding="utf-8"?>
2
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3
    android:layout_width="fill_parent"
4
    android:layout_height="32dp"
5
    android:orientation="horizontal" >
6

    
7
    <TextView
8
        android:id="@+id/level_row_country"
9
        android:layout_width="match_parent"
10
        android:layout_height="match_parent"
11
        android:layout_weight="1.5"
12
        android:textSize="20sp"
13
        android:gravity="left"
14
        android:background="@color/black"
15
        android:paddingLeft="5dp"/>
16

    
17
    <TextView
18
        android:id="@+id/level_row_name"
19
        android:layout_width="match_parent"
20
        android:layout_height="match_parent"
21
        android:layout_weight="1"
22
        android:textSize="20sp"
23
        android:gravity="left"
24
        android:background="@color/black"
25
        />
26

    
27
    <TextView
28
        android:id="@+id/level_row_time"
29
        android:layout_width="match_parent"
30
        android:layout_height="match_parent"
31
        android:layout_weight="1.5"
32
        android:textSize="20sp"
33
        android:gravity="right"
34
        android:background="@color/black"
35
        android:paddingRight="5dp"
36
        />
37
</LinearLayout>
(3-3/10)