1
0
Fork 0
mirror of https://github.com/gsantner/dandelion synced 2025-12-09 22:01:17 +01:00

Reworked search dialog to use layout resource and some code cleanup

This commit is contained in:
vanitasvitae 2016-08-27 12:34:08 +02:00
parent 18eeb76079
commit 8ae74d97d4
3 changed files with 50 additions and 44 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:layout_gravity="center_horizontal"
android:paddingStart="@dimen/activity_horizontal_margin_half" android:paddingEnd="@dimen/activity_horizontal_margin_half">
<EditText
android:id="@+id/dialog_search__input"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:singleLine="true"
android:hint="@string/app_hashtag"
/>
</LinearLayout>