mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 19:29:06 +01:00
31 lines
847 B
XML
31 lines
847 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center_horizontal"
|
|
android:orientation="vertical"
|
|
android:layout_margin="@dimen/margin_large">
|
|
|
|
<EditText
|
|
android:id="@+id/name"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:maxLines="1"
|
|
android:inputType="text|textCapSentences"
|
|
android:hint="@string/groups_create_group_hint"/>
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:id="@+id/feedback"
|
|
android:gravity="center" />
|
|
|
|
<Button
|
|
style="@style/BriarButton"
|
|
android:id="@+id/button"
|
|
android:enabled="false"
|
|
android:text="@string/groups_create_group_button"/>
|
|
|
|
</LinearLayout>
|