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"
|
|
|
|
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"
|
|
|
|
android:layout_margin="5dp"
|
2013-08-07 11:54:32 +02:00
|
|
|
android:paddingRight="6dp"
|
2012-09-19 13:14:36 +01:00
|
|
|
android:orientation="vertical" >
|
2011-03-30 01:39:36 +02:00
|
|
|
|
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
|
|
|
<TextView
|
|
|
|
android:id="@+id/title"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2013-08-07 11:54:32 +02:00
|
|
|
android:layout_alignParentLeft="true"
|
2012-09-19 13:14:36 +01:00
|
|
|
android:layout_marginBottom="4dp"
|
|
|
|
android:singleLine="false"
|
|
|
|
android:textSize="18sp"
|
|
|
|
android:textStyle="bold" />
|
2011-03-30 01:39:36 +02:00
|
|
|
|
2012-09-19 13:14:36 +01:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/icon"
|
|
|
|
android:layout_width="42dp"
|
|
|
|
android:layout_height="42dp"
|
|
|
|
android:layout_below="@id/title"
|
2013-08-07 11:54:32 +02:00
|
|
|
android:layout_marginRight="5dp"
|
2012-09-19 13:14:36 +01:00
|
|
|
android:scaleType="fitCenter" />
|
2011-03-30 01:39:36 +02:00
|
|
|
|
2012-09-19 13:14:36 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/license"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@id/title"
|
2013-08-07 11:54:32 +02:00
|
|
|
android:layout_toRightOf="@id/icon"
|
2012-09-19 13:14:36 +01:00
|
|
|
android:textSize="12sp" />
|
2011-03-30 01:39:36 +02:00
|
|
|
|
2012-09-19 13:14:36 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/status"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@id/license"
|
2013-08-07 11:54:32 +02:00
|
|
|
android:layout_toRightOf="@id/icon"
|
2012-09-19 13:14:36 +01:00
|
|
|
android:textSize="12sp" />
|
|
|
|
</RelativeLayout>
|
|
|
|
</LinearLayout>
|
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>
|