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"
|
|
|
|
android:background="@color/white" >
|
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"
|
|
|
|
android:textSize="18dp" />
|
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"
|
|
|
|
android:textColor="@color/gray"
|
|
|
|
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>
|