2014-05-24 20:04:43 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2014-07-07 01:13:33 +02:00
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-03-12 17:48:30 +01:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:paddingBottom="@dimen/dialog_content_bottom_margin"
|
|
|
|
android:paddingLeft="@dimen/dialog_content_margin"
|
|
|
|
android:paddingRight="@dimen/dialog_content_margin"
|
|
|
|
android:paddingTop="@dimen/dialog_content_bottom_margin">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingLeft="7dp"
|
|
|
|
android:paddingRight="7dp"
|
|
|
|
android:stretchColumns="1">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/osmo_group_name"/>
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/Name"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
2015-03-23 15:25:14 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/textLengthAlert"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/osmo_grop_name_length_alert"
|
2015-05-03 15:18:41 +02:00
|
|
|
android:textColor="@color/osmbug_closed"/>
|
2015-03-12 17:48:30 +01:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/osmo_group_description"/>
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/Description"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/osmo_group_policy"/>
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/Policy"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/osmo_group_by_invite"/>
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/OnlyByInvite"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/osmo_group_create_info"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:text="@string/osmo_group_information"
|
2015-04-17 00:37:39 +02:00
|
|
|
android:textSize="@dimen/default_list_text_size"/>
|
2015-03-12 17:48:30 +01:00
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/info"
|
2016-04-08 03:26:55 +02:00
|
|
|
android:contentDescription="@string/osmo_group_info"
|
2015-03-12 17:48:30 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2015-04-24 23:45:03 +02:00
|
|
|
android:background="?attr/dashboard_button"
|
2015-04-01 16:15:08 +02:00
|
|
|
android:src="@drawable/ic_action_gabout_dark"/>
|
2015-03-12 17:48:30 +01:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/osmo_group_create_dinfo"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/osmo_group_information_desc"
|
2015-04-17 00:37:39 +02:00
|
|
|
android:textSize="@dimen/default_desc_text_size"
|
2015-03-12 17:48:30 +01:00
|
|
|
android:visibility="gone"/>
|
2015-03-23 15:25:14 +01:00
|
|
|
|
|
|
|
|
2015-03-12 17:48:30 +01:00
|
|
|
</LinearLayout>
|
2014-07-07 01:13:33 +02:00
|
|
|
|
|
|
|
</ScrollView>
|