Blame view

res/layout/rowlayout.xml 898 Bytes
Imanol-Mikel Barba Sabariego authored
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
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/lelayout"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" >

    <TextView
        android:id="@+id/rowTextView"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/selectedonlist"
        android:padding="10dp"
        android:textColor="@drawable/selectedonlist2"
        android:textSize="16sp" >
    </TextView>

    <ImageView
        android:id="@+id/rowImageView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_centerVertical="true"
        android:layout_marginRight="50dp"
        android:src="@android:drawable/btn_star_big_off" />

</RelativeLayout>