2011-03-30 01:39:36 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2012-09-19 13:14:36 +01:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2013-09-26 00:09:57 +02:00
|
|
|
android:baselineAligned="false"
|
2012-09-19 13:14:36 +01:00
|
|
|
android:orientation="horizontal" >
|
2011-03-30 01:39:36 +02:00
|
|
|
|
2012-09-19 13:14:36 +01:00
|
|
|
<ScrollView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="fill_parent"
|
2013-07-10 14:19:58 +02:00
|
|
|
android:layout_weight="0.5" >
|
2011-03-30 01:39:36 +02:00
|
|
|
|
2012-09-19 13:14:36 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/landleft"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2013-12-31 10:54:54 +01:00
|
|
|
android:padding="5dp"
|
2014-03-10 18:27:43 +01:00
|
|
|
android:layout_marginRight="4dp"
|
2014-02-20 14:15:50 +01:00
|
|
|
android:layout_marginEnd="4dp"
|
2012-09-19 13:14:36 +01:00
|
|
|
android:orientation="vertical" >
|
2011-03-30 01:39:36 +02:00
|
|
|
|
2014-01-03 02:17:32 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/title"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:singleLine="false"
|
|
|
|
android:textSize="18sp"
|
|
|
|
android:textStyle="bold" />
|
|
|
|
|
2012-09-19 13:14:36 +01:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/header"
|
2011-03-30 01:39:36 +02:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2012-09-19 13:14:36 +01:00
|
|
|
android:layout_marginBottom="4dp"
|
|
|
|
android:orientation="horizontal" >
|
2011-03-30 01:39:36 +02:00
|
|
|
|
2012-09-19 13:14:36 +01:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/icon"
|
2014-01-03 02:17:32 +01:00
|
|
|
android:layout_width="56dp"
|
|
|
|
android:layout_height="56dp"
|
|
|
|
android:padding="4dp"
|
2012-09-19 13:14:36 +01:00
|
|
|
android:scaleType="fitCenter" />
|
2011-03-30 01:39:36 +02:00
|
|
|
|
2014-01-03 02:17:32 +01:00
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="4dp"
|
2014-03-10 18:27:43 +01:00
|
|
|
android:layout_toRightOf="@id/icon"
|
2014-02-20 14:15:50 +01:00
|
|
|
android:layout_toEndOf="@id/icon"
|
2014-01-03 02:17:32 +01:00
|
|
|
android:orientation="vertical" >
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/license"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:textSize="13sp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/categories"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@id/license"
|
|
|
|
android:layout_above="@id/status"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:textSize="13sp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/status"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:textSize="13sp" />
|
|
|
|
|
|
|
|
</RelativeLayout>
|
2011-03-30 01:39:36 +02:00
|
|
|
|
2012-09-19 13:14:36 +01:00
|
|
|
</RelativeLayout>
|
|
|
|
</LinearLayout>
|
2014-01-03 02:17:32 +01:00
|
|
|
|
2011-03-30 01:39:36 +02:00
|
|
|
</ScrollView>
|
|
|
|
|
2012-09-19 13:14:36 +01:00
|
|
|
<ListView
|
|
|
|
android:id="@android:id/list"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="fill_parent"
|
2013-07-10 12:59:47 +02:00
|
|
|
android:layout_weight="0.5"
|
|
|
|
android:scrollbars="none" />
|
2011-03-30 01:39:36 +02:00
|
|
|
|
2013-05-27 18:08:24 +02:00
|
|
|
</LinearLayout>
|