2022-04-21 09:08:36 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<merge xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
tools:parentTag="android.widget.LinearLayout">
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/text_view"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:textStyle="bold"
|
|
|
|
|
android:textSize="16sp" />
|
2022-05-17 13:39:22 +00:00
|
|
|
<com.habitrpg.common.habitica.views.CurrencyView
|
2022-04-21 09:08:36 +00:00
|
|
|
android:id="@+id/currency_view"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
app:currency="gold"
|
|
|
|
|
android:layout_marginStart="24dp" />
|
2022-04-26 11:35:19 +00:00
|
|
|
<ProgressBar
|
|
|
|
|
android:id="@+id/loading_indicator"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:indeterminate="true"
|
|
|
|
|
android:indeterminateBehavior="cycle"
|
|
|
|
|
android:indeterminateTint="@color/white"/>
|
2022-04-21 09:08:36 +00:00
|
|
|
</merge>
|