mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 18:59:06 +01:00
43 lines
1.3 KiB
XML
43 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:padding="@dimen/margin_large">
|
|
|
|
<android.support.design.widget.TextInputLayout
|
|
android:id="@+id/createForumNameLayout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:errorEnabled="true">
|
|
|
|
<EditText
|
|
android:id="@+id/createForumNameEntry"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:hint="@string/choose_forum_hint"
|
|
android:inputType="text|textCapSentences"
|
|
android:maxLines="1"/>
|
|
|
|
</android.support.design.widget.TextInputLayout>
|
|
|
|
<Button
|
|
android:id="@+id/createForumButton"
|
|
style="@style/BriarButton"
|
|
android:enabled="false"
|
|
android:text="@string/create_forum_button"/>
|
|
|
|
<ProgressBar
|
|
android:id="@+id/createForumProgressBar"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:indeterminate="true"
|
|
android:visibility="gone"
|
|
tools:visibility="visible"/>
|
|
|
|
</LinearLayout>
|