habitica-android/Habitica/res/layout/autocomplete_username.xml

17 lines
755 B
XML
Raw Normal View History

<?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="wrap_content"
2019-02-27 15:24:59 +00:00
android:paddingTop="@dimen/spacing_medium"
android:paddingBottom="@dimen/spacing_medium"
android:paddingStart="@dimen/spacing_large"
android:paddingEnd="@dimen/spacing_large">
2022-06-30 10:53:54 +00:00
<com.habitrpg.android.habitica.ui.views.UsernameLabel
android:id="@+id/display_name_view"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/username_view"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>