Project

General

Profile

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

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

1 b8b38548 Leszek Koltunski
<?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 4918f19c Leszek Koltunski
    android:layout_height="0dp"
5 cc5ec229 Leszek Koltunski
    android:paddingBottom="2dp"
6
    android:paddingTop="2dp"
7 b8b38548 Leszek Koltunski
    android:orientation="horizontal" >
8
9 cc5ec229 Leszek Koltunski
    <ImageView
10 4918f19c Leszek Koltunski
        android:id="@+id/scoresScrambleRowCountry"
11 b8b38548 Leszek Koltunski
        android:layout_width="match_parent"
12
        android:layout_height="match_parent"
13
        android:layout_weight="1.5"
14
        android:textSize="20sp"
15 1c90c64a Leszek Koltunski
        android:gravity="start"
16 4634a76a Leszek Koltunski
        android:background="@color/black" />
17 b8b38548 Leszek Koltunski
18
    <TextView
19 4918f19c Leszek Koltunski
        android:id="@+id/scoresScrambleRowName"
20 b8b38548 Leszek Koltunski
        android:layout_width="match_parent"
21
        android:layout_height="match_parent"
22
        android:layout_weight="1"
23
        android:textSize="20sp"
24 4634a76a Leszek Koltunski
        android:maxLines="1"
25 1c90c64a Leszek Koltunski
        android:gravity="start"
26 b8b38548 Leszek Koltunski
        android:background="@color/black"
27
        />
28
29
    <TextView
30 4918f19c Leszek Koltunski
        android:id="@+id/scoresScrambleRowTime"
31 b8b38548 Leszek Koltunski
        android:layout_width="match_parent"
32
        android:layout_height="match_parent"
33
        android:layout_weight="1.5"
34
        android:textSize="20sp"
35 4634a76a Leszek Koltunski
        android:maxLines="1"
36 1c90c64a Leszek Koltunski
        android:gravity="end"
37 b8b38548 Leszek Koltunski
        android:background="@color/black"
38 1c90c64a Leszek Koltunski
        android:paddingEnd="5dp"
39 b8b38548 Leszek Koltunski
        />
40
</LinearLayout>