mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-28 01:54:52 +00:00
36 lines
1.4 KiB
XML
36 lines
1.4 KiB
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="match_parent"
|
||
|
|
android:gravity="center_horizontal">
|
||
|
|
<FrameLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content">
|
||
|
|
<ImageView
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:src="@drawable/challenge_won_gem_confetti"
|
||
|
|
android:layout_gravity="center"/>
|
||
|
|
<com.facebook.drawee.view.SimpleDraweeView
|
||
|
|
android:id="@+id/achievement_view"
|
||
|
|
android:layout_width="48dp"
|
||
|
|
android:layout_height="52dp"
|
||
|
|
android:layout_gravity="center"/>
|
||
|
|
</FrameLayout>
|
||
|
|
<TextView
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="@string/congratulations"
|
||
|
|
android:textColor="@color/text_primary"
|
||
|
|
android:textSize="17sp"
|
||
|
|
android:layout_marginTop="16dp"
|
||
|
|
android:layout_marginBottom="2dp"/>
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/description_view"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="@string/won_achievement_description_noname"
|
||
|
|
android:textColor="@color/text_ternary"
|
||
|
|
android:textSize="15sp"
|
||
|
|
android:gravity="center_horizontal"/>
|
||
|
|
</LinearLayout>
|