Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
17133 manas 1
<?xml version="1.0" encoding="utf-8"?>
2
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
3
    android:layout_width="match_parent"
4
    android:layout_height="48dp"
5
    android:background="@drawable/row_highlighter">
6
 
7
    <ImageView
8
        android:id="@+id/childIcon"
9
        android:layout_width="wrap_content"
10
 
11
        android:layout_height="wrap_content"
12
        android:layout_alignParentLeft="true"
13
        android:layout_marginLeft="25dp"
14
        android:layout_marginRight="12dp"
15
        android:layout_centerVertical="true"/>
16
 
17
    <TextView
18
        android:id="@+id/childTitle"
19
        android:layout_width="wrap_content"
20
        android:layout_height="match_parent"
21
        android:layout_toRightOf="@id/childIcon"
22
        android:minHeight="?android:attr/listPreferredItemHeightSmall"
23
        android:textAppearance="?android:attr/textAppearanceListItemSmall"
24
        android:textColor="@color/Black"
25
        android:gravity="center_vertical"
26
        android:paddingRight="40dp"/>
27
 
28
</RelativeLayout>