mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-28 01:54:52 +00:00
20 lines
786 B
XML
20 lines
786 B
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:orientation="horizontal"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="60dp">
|
||
|
|
<TextView
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:textSize="16sp"
|
||
|
|
android:letterSpacing="0.02"
|
||
|
|
android:fontFamily="@string/font_family_medium"
|
||
|
|
android:text="@string/hatch"
|
||
|
|
android:textColor="?attr/colorAccent"
|
||
|
|
android:layout_marginEnd="6dp"
|
||
|
|
/>
|
||
|
|
<com.habitrpg.android.habitica.ui.views.CurrencyView
|
||
|
|
android:id="@+id/currencyView"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"/>
|
||
|
|
</LinearLayout>
|