2010-05-18 11:23:25 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2012-03-12 09:28:35 -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-05-18 11:23:25 -04:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2010-07-26 17:57:28 -04:00
|
|
|
android:orientation="vertical"
|
2010-05-18 11:23:25 -04:00
|
|
|
android:paddingLeft="5dip"
|
2014-02-02 10:24:58 -05:00
|
|
|
android:paddingRight="5dip">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/message"
|
|
|
|
android:layout_marginBottom="8dp"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
2010-05-18 11:23:25 -04:00
|
|
|
|
2010-07-26 17:57:28 -04:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
2010-05-18 11:23:25 -04:00
|
|
|
android:layout_height="wrap_content"
|
2014-02-02 10:24:58 -05:00
|
|
|
android:orientation="horizontal">
|
2010-05-18 11:23:25 -04:00
|
|
|
|
2010-07-26 17:57:28 -04:00
|
|
|
<EditText
|
|
|
|
android:id="@+id/input"
|
|
|
|
android:layout_width="0dip"
|
|
|
|
android:layout_height="wrap_content"
|
2013-09-18 20:02:51 -04:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:gravity="top|left"
|
|
|
|
android:inputType="textMultiLine|textUri"
|
|
|
|
android:lines="2"
|
|
|
|
android:maxLines="6"
|
|
|
|
android:minLines="2"
|
|
|
|
android:scrollbars="vertical" />
|
2010-07-26 17:57:28 -04:00
|
|
|
|
2014-01-09 09:12:41 -05:00
|
|
|
<com.beardedhen.androidbootstrap.BootstrapButton
|
2010-07-26 17:57:28 -04:00
|
|
|
android:id="@+id/btn_browse"
|
|
|
|
android:layout_width="wrap_content"
|
2012-03-12 09:28:35 -04:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
2014-01-09 09:12:41 -05:00
|
|
|
android:layout_margin="4dp"
|
2013-10-25 15:46:05 -04:00
|
|
|
android:contentDescription="@string/filemanager_title_open"
|
2014-01-09 09:12:41 -05:00
|
|
|
bootstrapbutton:bb_icon_left="fa-folder-open"
|
|
|
|
bootstrapbutton:bb_roundedCorners="true"
|
|
|
|
bootstrapbutton:bb_size="default"
|
|
|
|
bootstrapbutton:bb_type="default" />
|
2010-07-26 17:57:28 -04:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/checkbox"
|
2012-03-12 09:28:35 -04:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
2010-05-18 11:23:25 -04:00
|
|
|
|
2012-03-12 09:28:35 -04:00
|
|
|
</LinearLayout>
|