60a6b92d9a
Only layout files are touched and no new strings added.
105 lines
No EOL
3 KiB
XML
105 lines
No EOL
3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
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"/>
|
|
|
|
<TextView
|
|
android:id="@+id/textLengthAlert"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/osmo_grop_name_length_alert"
|
|
android:textColor="@color/osmbug_closed"/>
|
|
|
|
<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"
|
|
android:textSize="@dimen/default_list_text_size"/>
|
|
|
|
<ImageButton
|
|
android:id="@+id/info"
|
|
android:contentDescription="@string/osmo_group_info"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="?attr/dashboard_button"
|
|
android:src="@drawable/ic_action_gabout_dark"/>
|
|
</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"
|
|
android:textSize="@dimen/default_desc_text_size"
|
|
android:visibility="gone"/>
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView> |