aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/res/layout/join_conference_dialog.xml
diff options
context:
space:
mode:
authorChristian Schneppe <christian@pix-art.de>2018-04-22 21:46:40 +0200
committerChristian Schneppe <christian@pix-art.de>2018-04-22 21:46:40 +0200
commitd8d858ded510b09685b32566ab03a666cb1dcfa9 (patch)
tree797b72e1d747b0481561ebad7dc8df6ae71c9c7b /src/main/res/layout/join_conference_dialog.xml
parentad839a1ddaea72f766be80266ae5b6d4fa7cae7f (diff)
made checkboxes and radiobuttons stylable
Diffstat (limited to 'src/main/res/layout/join_conference_dialog.xml')
-rw-r--r--src/main/res/layout/join_conference_dialog.xml53
1 files changed, 0 insertions, 53 deletions
diff --git a/src/main/res/layout/join_conference_dialog.xml b/src/main/res/layout/join_conference_dialog.xml
deleted file mode 100644
index 3f46e31cc..000000000
--- a/src/main/res/layout/join_conference_dialog.xml
+++ /dev/null
@@ -1,53 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<layout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto">
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical"
- android:paddingBottom="8dp"
- android:paddingLeft="24dp"
- android:paddingRight="24dp"
- android:paddingTop="16dp">
-
- <TextView
- android:id="@+id/your_account"
- style="@style/InputLabel"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/your_account"
- android:visibility="gone" />
-
- <Spinner
- android:id="@+id/account"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:visibility="gone" />
-
- <android.support.design.widget.TextInputLayout
- android:id="@+id/account_jid_layout"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:hint="@string/conference_address"
- app:errorTextAppearance="@style/TextAppearance.Conversations.Design.Error"
- app:hintTextAppearance="@style/TextAppearance.Conversations.Design.Hint">
-
- <AutoCompleteTextView
- android:id="@+id/jid"
- style="@style/Widget.Conversations.EditText"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:inputType="textEmailAddress" />
- </android.support.design.widget.TextInputLayout>
-
- <CheckBox
- android:id="@+id/bookmark"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="8dp"
- android:checked="true"
- android:text="@string/save_as_bookmark" />
-
- </LinearLayout>
-</layout> \ No newline at end of file