2010-08-17 21:49:34 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2012-06-20 14:49:57 +03:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2010-08-17 21:49:34 +00:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2012-06-20 14:49:57 +03:00
|
|
|
android:orientation="vertical" >
|
2010-08-17 21:49:34 +00:00
|
|
|
|
|
|
|
<LinearLayout
|
2014-03-22 14:57:08 +01:00
|
|
|
android:id="@+id/text_layout"
|
2010-08-17 21:49:34 +00:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2012-06-20 14:49:57 +03:00
|
|
|
android:gravity="center_vertical"
|
2010-08-17 21:49:34 +00:00
|
|
|
android:minHeight="?android:attr/listPreferredItemHeight"
|
2012-06-20 14:49:57 +03:00
|
|
|
android:orientation="horizontal" >
|
2010-08-17 21:49:34 +00:00
|
|
|
|
|
|
|
<RelativeLayout
|
2014-03-10 14:59:15 -04:00
|
|
|
android:layout_width="0dip"
|
2010-08-17 21:49:34 +00:00
|
|
|
android:layout_height="wrap_content"
|
2012-06-20 14:49:57 +03:00
|
|
|
android:layout_marginBottom="6sp"
|
2010-08-17 21:49:34 +00:00
|
|
|
android:layout_marginLeft="16sp"
|
|
|
|
android:layout_marginRight="6sp"
|
|
|
|
android:layout_marginTop="6sp"
|
|
|
|
android:layout_weight="1"
|
2012-06-20 14:49:57 +03:00
|
|
|
android:background="@android:drawable/menuitem_background"
|
|
|
|
android:focusable="true" >
|
2010-08-17 21:49:34 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/title"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:focusable="true"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceLarge" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/summary"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignLeft="@android:id/title"
|
2012-06-20 14:49:57 +03:00
|
|
|
android:layout_below="@android:id/title"
|
|
|
|
android:maxLines="2"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
2010-08-17 21:49:34 +00:00
|
|
|
</RelativeLayout>
|
|
|
|
|
2014-06-30 19:09:13 +02:00
|
|
|
<ImageButton
|
2010-08-17 21:49:34 +00:00
|
|
|
android:id="@+id/add"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2012-06-20 14:49:57 +03:00
|
|
|
android:layout_gravity="center_vertical"
|
2014-01-09 15:12:41 +01:00
|
|
|
android:layout_margin="10dp"
|
2010-08-17 21:49:34 +00:00
|
|
|
android:layout_marginLeft="4dip"
|
|
|
|
android:layout_marginRight="6dip"
|
2014-06-30 19:09:13 +02:00
|
|
|
android:src="@drawable/plus"
|
|
|
|
android:background="@drawable/button_rounded_green"/>
|
2010-08-17 21:49:34 +00:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:id="@+id/separator"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="1dip"
|
2012-06-20 14:49:57 +03:00
|
|
|
android:background="?android:attr/listDivider" />
|
2010-08-17 21:49:34 +00:00
|
|
|
|
|
|
|
<ScrollView
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="0dip"
|
|
|
|
android:layout_weight="1"
|
2012-06-20 14:49:57 +03:00
|
|
|
android:orientation="vertical" >
|
2010-08-17 21:49:34 +00:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/editors"
|
|
|
|
android:layout_width="fill_parent"
|
2014-03-03 11:48:45 +01:00
|
|
|
android:layout_height="wrap_content"
|
2012-06-20 14:49:57 +03:00
|
|
|
android:orientation="vertical" />
|
2010-08-17 21:49:34 +00:00
|
|
|
</ScrollView>
|
|
|
|
|
2014-03-03 11:48:45 +01:00
|
|
|
</LinearLayout>
|