Project

General

Profile

Download (934 Bytes) Statistics
| Branch: | Tag: | Revision:

magiccube / src / main / res / layout / dialog_pattern_group_item.xml @ 99b8a069

1 4debbf44 Leszek Koltunski
<?xml version="1.0" encoding="utf-8"?>
2 054fbee1 Leszek Koltunski
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 4debbf44 Leszek Koltunski
    android:layout_width="fill_parent"
4
    android:layout_height="match_parent"
5 054fbee1 Leszek Koltunski
    android:orientation="horizontal">
6 4debbf44 Leszek Koltunski
7
    <TextView
8
        android:id="@+id/heading"
9
        android:layout_width="wrap_content"
10
        android:layout_height="wrap_content"
11 054fbee1 Leszek Koltunski
        android:layout_alignParentLeft="true"
12
        android:layout_alignParentTop="true"
13
        android:gravity="left"
14 4debbf44 Leszek Koltunski
        android:paddingLeft="35sp"
15 054fbee1 Leszek Koltunski
        android:textStyle="bold"
16
        />
17 4debbf44 Leszek Koltunski
18 054fbee1 Leszek Koltunski
    <TextView
19
        android:id="@+id/counter"
20
        android:layout_width="wrap_content"
21
        android:layout_height="wrap_content"
22
        android:layout_alignParentRight="true"
23
        android:gravity="right"
24
        android:layout_toRightOf="@id/heading"
25
        android:paddingRight="10sp"
26
        android:textStyle="bold"
27
        />
28
29
</RelativeLayout>