2012-04-13 16:21:34 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2012-07-12 22:27:34 +02:00
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
2012-06-22 14:30:31 +02:00
|
|
|
android:layout_width="fill_parent"
|
2012-07-19 15:17:35 +02:00
|
|
|
android:layout_height="fill_parent"
|
2012-11-20 20:15:01 +01:00
|
|
|
android:background="?attr/non_transparent_background" >
|
2012-06-22 14:30:31 +02:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical" >
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/txtvItemname"
|
|
|
|
android:layout_width="fill_parent"
|
2012-06-26 17:56:47 +02:00
|
|
|
android:layout_height="wrap_content"
|
2012-07-12 22:27:34 +02:00
|
|
|
android:layout_margin="8dp"
|
2013-01-19 23:38:41 +01:00
|
|
|
android:textSize="@dimen/text_size_medium" />
|
2012-06-22 14:30:31 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/txtvPublished"
|
|
|
|
android:layout_width="fill_parent"
|
2012-06-26 17:56:47 +02:00
|
|
|
android:layout_height="wrap_content"
|
2012-07-12 22:27:34 +02:00
|
|
|
android:layout_marginBottom="8dp"
|
|
|
|
android:layout_marginLeft="8dp"
|
|
|
|
android:layout_marginRight="8dp"
|
2013-01-20 00:02:29 +01:00
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
2012-07-12 22:27:34 +02:00
|
|
|
android:textStyle="italic" />
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:layout_marginBottom="8dp"
|
|
|
|
android:layout_marginLeft="8dp"
|
|
|
|
android:layout_marginRight="8dp"
|
|
|
|
android:background="@color/ics_gray" />
|
2012-07-01 14:28:49 +02:00
|
|
|
|
2012-07-12 22:27:34 +02:00
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/description_fragment"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" >
|
|
|
|
</FrameLayout>
|
|
|
|
</LinearLayout>
|
2012-06-22 14:30:31 +02:00
|
|
|
|
2012-07-12 22:27:34 +02:00
|
|
|
</ScrollView>
|