Subversion Repositories SmartDukaan

Rev

Rev 21481 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 21481 Rev 22837
Line 1... Line 1...
1
<?xml version="1.0" encoding="utf-8"?>
1
<?xml version="1.0" encoding="utf-8"?>
2
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
3
    android:layout_width="match_parent"
3
    android:layout_width="match_parent"
4
    android:layout_height="match_parent"
4
    android:layout_height="match_parent"
5
    android:background="@color/green_tobe_used"
5
    android:background="@color/White"
6
    android:padding="10dp" >
6
    android:padding="10dp" >
7
 
7
 
8
 
8
 
9
    <TextView
-
 
10
        android:gravity="start"
-
 
11
        android:layout_centerHorizontal="true"
-
 
12
        android:id="@+id/openingText"
-
 
13
        android:textSize="30dp"
-
 
14
        android:textColor="@color/White"
-
 
15
        android:layout_marginLeft="7dp"
-
 
16
        android:layout_marginRight="7dp"
-
 
17
        android:layout_width="300dp"
-
 
18
        android:layout_height="wrap_content" />
-
 
19
 
-
 
20
    <TextView
-
 
21
        android:gravity="start"
-
 
22
        android:layout_centerHorizontal="true"
-
 
23
        android:id="@+id/secondText"
-
 
24
        android:layout_marginTop="4dp"
-
 
25
        android:textSize="17dp"
-
 
26
        android:layout_marginLeft="7dp"
-
 
27
        android:layout_marginRight="7dp"
-
 
28
        android:layout_below="@+id/openingText"
-
 
29
        android:textColor="@color/Black"
-
 
30
        android:layout_width="300dp"
-
 
31
        android:layout_height="wrap_content" />
-
 
32
    <ImageView
9
    <ImageView
33
        android:id="@+id/flag"
10
        android:id="@+id/flag"
34
        android:layout_below="@+id/secondText"
11
        android:layout_centerHorizontal="true"
35
        android:layout_width="wrap_content"
12
        android:layout_width="fill_parent"
36
        android:layout_height="wrap_content"
13
        android:layout_height="fill_parent"
37
        android:padding="1dp" />
14
         />
38
 
15
 
39
</RelativeLayout>
16
</RelativeLayout>
40
17