2013-12-21 06:15:27 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
|
|
<ScrollView xmlns:a="http://schemas.android.com/apk/res/android"
|
|
|
|
a:id="@+id/share_details"
|
|
|
|
a:layout_width="wrap_content"
|
|
|
|
a:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
a:orientation="vertical"
|
|
|
|
a:layout_width="wrap_content"
|
|
|
|
a:layout_height="wrap_content">
|
|
|
|
|
2013-12-28 01:29:12 +01:00
|
|
|
<TextView
|
|
|
|
a:layout_width="wrap_content"
|
|
|
|
a:layout_height="wrap_content"
|
|
|
|
a:text="@string/share_comment"
|
|
|
|
a:textAllCaps="true"
|
|
|
|
a:textColor="@color/cyan"
|
|
|
|
a:id="@+id/textViewComment"
|
|
|
|
a:layout_gravity="center_horizontal"/>
|
|
|
|
|
2013-12-21 06:15:27 +01:00
|
|
|
<EditText
|
|
|
|
a:id="@+id/share_description"
|
|
|
|
a:layout_width="fill_parent"
|
|
|
|
a:layout_height="wrap_content"
|
|
|
|
a:inputType="text"
|
2013-12-28 01:29:12 +01:00
|
|
|
a:singleLine="false"
|
|
|
|
a:layout_marginTop="4dip"
|
|
|
|
a:layout_marginBottom="4dip" />
|
2013-12-21 06:15:27 +01:00
|
|
|
|
2013-12-28 01:29:12 +01:00
|
|
|
<TextView
|
2013-12-21 06:15:27 +01:00
|
|
|
a:layout_width="wrap_content"
|
2013-12-28 01:29:12 +01:00
|
|
|
a:layout_height="wrap_content"
|
|
|
|
a:text="@string/settings.share_expiration"
|
|
|
|
a:textAllCaps="true"
|
|
|
|
a:textColor="@color/cyan"
|
|
|
|
a:id="@+id/textViewExpiration"
|
|
|
|
a:layout_gravity="center_horizontal"/>
|
2013-12-21 06:15:27 +01:00
|
|
|
|
2013-12-28 01:29:12 +01:00
|
|
|
<com.thejoshwa.ultrasonic.androidapp.util.TimeSpanPicker
|
2013-12-21 06:15:27 +01:00
|
|
|
a:id="@+id/date_picker"
|
|
|
|
a:layout_width="wrap_content"
|
|
|
|
a:layout_height="wrap_content"
|
2013-12-28 01:29:12 +01:00
|
|
|
a:layout_marginTop="4dip"
|
|
|
|
a:layout_marginBottom="4dip" />
|
2013-12-21 06:15:27 +01:00
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
a:id="@+id/hide_dialog"
|
|
|
|
a:text="@string/do_not_show_dialog_again"
|
|
|
|
a:layout_width="wrap_content"
|
2013-12-28 01:29:12 +01:00
|
|
|
a:layout_height="wrap_content"
|
|
|
|
a:layout_marginTop="4dip"
|
|
|
|
a:layout_marginBottom="4dip" />
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
a:id="@+id/save_as_defaults"
|
|
|
|
a:text="@string/save_as_defaults"
|
|
|
|
a:layout_width="wrap_content"
|
|
|
|
a:layout_height="wrap_content"
|
|
|
|
a:layout_marginTop="4dip"
|
|
|
|
a:layout_marginBottom="4dip" />
|
2013-12-21 06:15:27 +01:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|