summaryrefslogtreecommitdiff
path: root/android/SameGame/app/src/main/res/layout/row.xml
blob: 08c18966327c02f8b24a25e2617989b61efdd23a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/layoutbg"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:gravity="center"
        android:orientation="horizontal" >
<!--
        <ImageView
            android:id="@+id/idIVCourse"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_margin="2dp"
            android:padding="1dp"
            />
        - android:src="@mipmap/ic_launcher" -->

        <TextView
            android:id="@+id/idTVCourse"
            android:layout_width="100dp"
            android:layout_height="77dp"
            android:layout_gravity="center"
            android:layout_margin="1dp"
            android:padding="1dp"
            android:background="@color/white"
            android:text="@string/app_name"
            android:textAlignment="center"
            android:textColor="@color/black" />
</RelativeLayout>
</RelativeLayout>