Add seperate dialog for creating groups

To improve layout
This commit is contained in:
Michael Schättgen 2018-12-16 22:25:50 +01:00
parent 324df53df5
commit ae0b4b5a37
4 changed files with 40 additions and 18 deletions

View file

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingStart="20dp"
android:paddingEnd="20dp"
android:paddingTop="20dp">
<EditText
android:id="@+id/text_groupname"
android:hint="@string/group_name_hint"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</LinearLayout>