Project

General

Profile

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

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

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="0dp"
5
    android:paddingBottom="2dp"
6
    android:paddingTop="2dp"
7
    android:orientation="horizontal" >
8

    
9
    <ImageView
10
        android:id="@+id/scoresScrambleRowCountry"
11
        android:layout_width="match_parent"
12
        android:layout_height="match_parent"
13
        android:layout_weight="1.5"
14
        android:textSize="20sp"
15
        android:gravity="start"
16
        android:background="@color/black" />
17

    
18
    <TextView
19
        android:id="@+id/scoresScrambleRowName"
20
        android:layout_width="match_parent"
21
        android:layout_height="match_parent"
22
        android:layout_weight="1"
23
        android:textSize="20sp"
24
        android:maxLines="1"
25
        android:gravity="start"
26
        android:background="@color/black"
27
        />
28

    
29
    <TextView
30
        android:id="@+id/scoresScrambleRowTime"
31
        android:layout_width="match_parent"
32
        android:layout_height="match_parent"
33
        android:layout_weight="1.5"
34
        android:textSize="20sp"
35
        android:maxLines="1"
36
        android:gravity="end"
37
        android:background="@color/black"
38
        android:paddingEnd="5dp"
39
        />
40
</LinearLayout>
(7-7/18)