Project

General

Profile

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

magiccube / src / main / res / layout / dialog_scores_scramble_row.xml @ 58fd2ec0

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

    
10
    <ImageView
11
        android:id="@+id/scoresScrambleRowCountry"
12
        android:layout_width="0dp"
13
        android:layout_height="match_parent"
14
        android:paddingBottom="3dp"
15
        android:paddingTop="3dp"
16
        android:layout_weight="0.17"
17
        android:gravity="start"
18
        android:background="@color/black"/>
19

    
20
    <TextView
21
        android:id="@+id/scoresScrambleRowName"
22
        android:layout_width="0dp"
23
        android:layout_height="match_parent"
24
        android:layout_weight="0.53"
25
        android:textSize="20sp"
26
        android:maxLines="1"
27
        android:gravity="start|center_vertical"
28
        android:background="@color/black"
29
        android:paddingStart="5dp"
30
        />
31

    
32
    <TextView
33
        android:id="@+id/scoresScrambleRowTime"
34
        android:layout_width="0dp"
35
        android:layout_height="match_parent"
36
        android:layout_weight="0.3"
37
        android:textSize="20sp"
38
        android:maxLines="1"
39
        android:gravity="end|center_vertical"
40
        android:background="@color/black"
41
        android:paddingEnd="5dp"
42
        />
43
</LinearLayout>
(18-18/56)