2012-04-12 15:26:41 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2012-04-12 20:51:59 +02:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent" >
|
2012-04-12 15:26:41 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/txtvItemname"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2012-04-12 20:51:59 +02:00
|
|
|
/>
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/txtvItemsize"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@id/txtvItemname"
|
|
|
|
/>
|
2012-06-20 20:59:35 +02:00
|
|
|
<ImageButton
|
2012-06-16 20:06:38 +02:00
|
|
|
android:id="@+id/butAction"
|
2012-06-16 16:51:25 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
2012-06-20 20:59:35 +02:00
|
|
|
android:padding="8dp"
|
|
|
|
android:src="@drawable/navigation_expand"
|
2012-06-20 19:54:43 +02:00
|
|
|
android:background="@drawable/borderless_button"
|
2012-06-16 16:51:25 +02:00
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:focusable="false"
|
2012-06-20 20:59:35 +02:00
|
|
|
android:focusableInTouchMode="false"
|
|
|
|
android:clickable="false"
|
2012-06-16 20:06:38 +02:00
|
|
|
/>
|
2012-06-20 20:59:35 +02:00
|
|
|
<ImageView
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:src="@drawable/vertical_divider"
|
|
|
|
android:layout_centerVertical="true"
|
2012-06-22 16:05:59 +02:00
|
|
|
android:layout_toLeftOf="@id/butAction"
|
2012-06-20 20:59:35 +02:00
|
|
|
android:focusable="false"/>
|
2012-04-12 20:51:59 +02:00
|
|
|
|
2012-04-12 15:26:41 +02:00
|
|
|
</RelativeLayout>
|