mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-29 02:08:10 +00:00
50 lines
2.2 KiB
XML
50 lines
2.2 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent">
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:orientation="vertical"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content">
|
||
|
|
<EditText
|
||
|
|
android:id="@+id/group_name_edittext"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_gravity="center_horizontal"
|
||
|
|
android:hint="@string/name"
|
||
|
|
android:textColor="@android:color/black"
|
||
|
|
android:inputType="textCapSentences" />
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="72dp"
|
||
|
|
android:orientation="horizontal" >
|
||
|
|
|
||
|
|
<ImageButton
|
||
|
|
android:id="@+id/emoji.toggle.btn"
|
||
|
|
android:layout_width="48dp"
|
||
|
|
android:layout_height="48dp"
|
||
|
|
android:src="@drawable/ic_emoticon_grey600_24dp"
|
||
|
|
android:background="@drawable/md_transparent"
|
||
|
|
android:contentDescription="Toogle Emoji"
|
||
|
|
android:focusable="true"
|
||
|
|
android:focusableInTouchMode="true" />
|
||
|
|
|
||
|
|
<android.support.design.widget.TextInputLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
app:hintTextAppearance="@style/TextAppearance.AppCompat">
|
||
|
|
|
||
|
|
<com.github.data5tream.emojilib.EmojiEditText
|
||
|
|
android:id="@+id/group_description_edittext"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_gravity="center_horizontal"
|
||
|
|
android:hint="@string/description"
|
||
|
|
android:textColor="@android:color/black"
|
||
|
|
android:inputType="textCapSentences" />
|
||
|
|
</android.support.design.widget.TextInputLayout>
|
||
|
|
</LinearLayout>
|
||
|
|
</LinearLayout>
|
||
|
|
</ScrollView>
|