mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-28 01:54:52 +00:00
17 lines
786 B
XML
17 lines
786 B
XML
|
|
<?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"
|
||
|
|
android:layout_marginTop="@dimen/spacing_medium"
|
||
|
|
android:layout_marginBottom="@dimen/spacing_medium"
|
||
|
|
android:layout_marginStart="@dimen/spacing_large"
|
||
|
|
android:layout_marginEnd="@dimen/spacing_large">
|
||
|
|
<com.habitrpg.android.habitica.ui.views.social.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>
|