Project

General

Profile

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

magiccube / src / main / res / layout / dialog_stars_status.xml @ b1629e16

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="fill_parent"
5
    android:gravity="center|fill_horizontal"
6
    android:padding="10dp"
7
    android:background="@color/grey"
8
    android:orientation="vertical">
9

    
10
    <TextView
11
        android:id="@+id/stars_string1"
12
        android:background="@color/dark_grey"
13
        android:layout_width="match_parent"
14
        android:layout_height="match_parent"
15
        android:gravity="start"
16
        android:textSize="21sp"
17
        android:padding="10dp"
18
        android:text="@string/buy_string1"
19
        />
20
    <TextView
21
        android:id="@+id/stars_string2"
22
        android:background="@color/dark_grey"
23
        android:layout_width="match_parent"
24
        android:layout_height="match_parent"
25
        android:gravity="start"
26
        android:textSize="21sp"
27
        android:padding="10dp"
28
        android:text="@string/buy_string2"
29
        />
30
    <ImageButton
31
        android:id="@+id/stars_buy_button"
32
        android:layout_width="match_parent"
33
        android:layout_height="wrap_content"
34
        android:gravity="center"
35
        android:backgroundTint="@color/red"
36
        android:scaleType="fitCenter"
37
        android:src="@drawable/price_50"
38
        />
39
</LinearLayout>
(25-25/42)