| 21478 |
rajender |
1 |
<?xml version="1.0" encoding="utf-8"?>
|
|
|
2 |
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
3 |
android:orientation="vertical" android:layout_width="match_parent"
|
|
|
4 |
android:layout_height="match_parent">
|
|
|
5 |
|
|
|
6 |
<RelativeLayout
|
|
|
7 |
android:layout_marginTop="5dp"
|
|
|
8 |
android:layout_width="match_parent"
|
|
|
9 |
android:layout_height="match_parent">
|
|
|
10 |
|
|
|
11 |
<ImageView
|
|
|
12 |
android:id="@+id/iview1"
|
|
|
13 |
android:layout_marginTop="12.5dp"
|
|
|
14 |
android:src="@drawable/my_details"
|
|
|
15 |
android:layout_width="wrap_content"
|
|
|
16 |
android:layout_height="wrap_content" />
|
|
|
17 |
<View
|
|
|
18 |
android:id="@+id/view1"
|
|
|
19 |
android:layout_toRightOf="@+id/iview1"
|
|
|
20 |
android:layout_width="10dp"
|
|
|
21 |
android:layout_height="0dp">
|
|
|
22 |
|
|
|
23 |
</View>
|
|
|
24 |
|
|
|
25 |
<TextView
|
|
|
26 |
android:id="@+id/my"
|
|
|
27 |
android:text="My"
|
|
|
28 |
android:layout_toRightOf="@+id/view1"
|
|
|
29 |
android:layout_width="wrap_content"
|
|
|
30 |
android:layout_height="wrap_content"
|
|
|
31 |
android:textColor="@color/Black"
|
|
|
32 |
android:textAppearance="?android:attr/textAppearanceLarge"
|
|
|
33 |
|
|
|
34 |
/>
|
|
|
35 |
|
|
|
36 |
<View
|
|
|
37 |
android:id="@+id/view"
|
|
|
38 |
android:layout_toRightOf="@+id/my"
|
|
|
39 |
android:layout_width="10dp"
|
|
|
40 |
android:layout_height="0dp">
|
|
|
41 |
|
|
|
42 |
</View>
|
|
|
43 |
<TextView
|
|
|
44 |
android:id="@+id/address"
|
|
|
45 |
android:text="Addresses"
|
|
|
46 |
android:layout_toRightOf="@+id/view"
|
|
|
47 |
android:layout_width="wrap_content"
|
|
|
48 |
android:layout_height="wrap_content"
|
|
|
49 |
android:textAppearance="?android:attr/textAppearanceLarge"
|
|
|
50 |
android:textColor="@color/green_tobe_used"
|
|
|
51 |
|
|
|
52 |
|
|
|
53 |
/>
|
|
|
54 |
</RelativeLayout>
|
|
|
55 |
|
|
|
56 |
</LinearLayout>
|