2010-05-18 15:23:25 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2012-03-12 14:28:35 +01:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-02-27 01:26:04 +01:00
|
|
|
android:layout_width="match_parent"
|
2010-05-18 15:23:25 +00:00
|
|
|
android:layout_height="wrap_content"
|
2010-07-26 21:57:28 +00:00
|
|
|
android:orientation="vertical"
|
2015-02-27 01:26:04 +01:00
|
|
|
android:paddingTop="16dp"
|
|
|
|
android:paddingBottom="16dp"
|
|
|
|
android:paddingLeft="24dp"
|
|
|
|
android:paddingRight="24dp">
|
2014-02-02 16:24:58 +01:00
|
|
|
|
|
|
|
<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 15:23:25 +00:00
|
|
|
|
2010-07-26 21:57:28 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
2010-05-18 15:23:25 +00:00
|
|
|
android:layout_height="wrap_content"
|
2014-02-02 16:24:58 +01:00
|
|
|
android:orientation="horizontal">
|
2010-05-18 15:23:25 +00:00
|
|
|
|
2010-07-26 21:57:28 +00:00
|
|
|
<EditText
|
|
|
|
android:id="@+id/input"
|
|
|
|
android:layout_width="0dip"
|
|
|
|
android:layout_height="wrap_content"
|
2013-09-19 02:02:51 +02:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:gravity="top|left"
|
|
|
|
android:inputType="textMultiLine|textUri"
|
2015-02-27 01:26:04 +01:00
|
|
|
android:lines="1"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:minLines="1"
|
|
|
|
android:scrollbars="vertical"
|
|
|
|
android:layout_gravity="center_vertical" />
|
2010-07-26 21:57:28 +00:00
|
|
|
|
2014-06-29 13:21:33 +02:00
|
|
|
<ImageButton
|
2010-07-26 21:57:28 +00:00
|
|
|
android:id="@+id/btn_browse"
|
|
|
|
android:layout_width="wrap_content"
|
2012-03-12 14:28:35 +01:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
2014-01-09 15:12:41 +01:00
|
|
|
android:layout_margin="4dp"
|
2013-10-25 21:46:05 +02:00
|
|
|
android:contentDescription="@string/filemanager_title_open"
|
2014-06-29 13:21:33 +02:00
|
|
|
android:background="@drawable/button_rounded"
|
|
|
|
android:src="@drawable/ic_action_collection"/>
|
2010-07-26 21:57:28 +00:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/checkbox"
|
2012-03-12 14:28:35 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
2010-05-18 15:23:25 +00:00
|
|
|
|
2012-03-12 14:28:35 +01:00
|
|
|
</LinearLayout>
|