2010-08-17 17:49:34 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2012-06-20 07:49:57 -04:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-01-09 09:12:41 -05:00
|
|
|
xmlns:bootstrapbutton="http://schemas.android.com/apk/res-auto"
|
2010-08-17 17:49:34 -04:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2012-06-20 07:49:57 -04:00
|
|
|
android:orientation="vertical" >
|
2010-08-17 17:49:34 -04:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+android:id/text_layout"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2012-06-20 07:49:57 -04:00
|
|
|
android:gravity="center_vertical"
|
2010-08-17 17:49:34 -04:00
|
|
|
android:minHeight="?android:attr/listPreferredItemHeight"
|
2012-06-20 07:49:57 -04:00
|
|
|
android:orientation="horizontal" >
|
2010-08-17 17:49:34 -04:00
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2012-06-20 07:49:57 -04:00
|
|
|
android:layout_marginBottom="6sp"
|
2010-08-17 17:49:34 -04:00
|
|
|
android:layout_marginLeft="16sp"
|
|
|
|
android:layout_marginRight="6sp"
|
|
|
|
android:layout_marginTop="6sp"
|
|
|
|
android:layout_weight="1"
|
2012-06-20 07:49:57 -04:00
|
|
|
android:background="@android:drawable/menuitem_background"
|
|
|
|
android:focusable="true" >
|
2010-08-17 17:49:34 -04: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 07:49:57 -04:00
|
|
|
android:layout_below="@android:id/title"
|
|
|
|
android:maxLines="2"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
2010-08-17 17:49:34 -04:00
|
|
|
</RelativeLayout>
|
|
|
|
|
2014-01-09 09:12:41 -05:00
|
|
|
<com.beardedhen.androidbootstrap.BootstrapButton
|
2010-08-17 17:49:34 -04:00
|
|
|
android:id="@+id/add"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2012-06-20 07:49:57 -04:00
|
|
|
android:layout_gravity="center_vertical"
|
2014-01-09 09:12:41 -05:00
|
|
|
android:layout_margin="10dp"
|
2010-08-17 17:49:34 -04:00
|
|
|
android:layout_marginLeft="4dip"
|
|
|
|
android:layout_marginRight="6dip"
|
2014-01-09 09:12:41 -05:00
|
|
|
bootstrapbutton:bb_icon_left="fa-plus"
|
|
|
|
bootstrapbutton:bb_roundedCorners="true"
|
|
|
|
bootstrapbutton:bb_size="small"
|
|
|
|
bootstrapbutton:bb_type="success" />
|
2010-08-17 17:49:34 -04:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:id="@+id/separator"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="1dip"
|
2012-06-20 07:49:57 -04:00
|
|
|
android:background="?android:attr/listDivider" />
|
2010-08-17 17:49:34 -04:00
|
|
|
|
|
|
|
<ScrollView
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="0dip"
|
|
|
|
android:layout_weight="1"
|
2012-06-20 07:49:57 -04:00
|
|
|
android:orientation="vertical" >
|
2010-08-17 17:49:34 -04:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/editors"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2012-06-20 07:49:57 -04:00
|
|
|
android:orientation="vertical" />
|
2010-08-17 17:49:34 -04:00
|
|
|
</ScrollView>
|
|
|
|
|
2012-06-20 07:49:57 -04:00
|
|
|
</LinearLayout>
|