mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-04-14 19:56:32 +00:00
27 lines
No EOL
1.1 KiB
XML
27 lines
No EOL
1.1 KiB
XML
<?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" />
|
|
<com.habitrpg.android.habitica.ui.views.CurrencyView
|
|
android:id="@+id/currency_view"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
app:currency="gold"
|
|
android:layout_marginStart="24dp" />
|
|
<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"/>
|
|
</merge> |