2016-09-06 19:33:17 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2016-09-08 15:22:59 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-09-06 19:33:17 +00:00
|
|
|
xmlns:fresco="http://schemas.android.com/apk/res-auto"
|
2016-09-08 17:19:32 +00:00
|
|
|
android:id="@+id/achievement_item_layout"
|
2016-09-08 15:22:59 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_margin="10dp"
|
2016-09-06 19:33:17 +00:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
2016-09-08 17:19:32 +00:00
|
|
|
<FrameLayout
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_gravity="center_horizontal">
|
|
|
|
|
|
|
|
|
|
<com.facebook.drawee.view.SimpleDraweeView
|
|
|
|
|
android:id="@+id/achievement_drawee"
|
2016-09-06 19:33:17 +00:00
|
|
|
|
2016-12-15 18:32:54 +00:00
|
|
|
android:layout_width="36dp"
|
|
|
|
|
android:layout_height="39dp"
|
2016-09-08 17:19:32 +00:00
|
|
|
android:layout_marginRight="3dp" />
|
2016-09-06 19:33:17 +00:00
|
|
|
|
2016-09-08 17:19:32 +00:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/achievement_count_label"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_gravity="bottom|right"
|
|
|
|
|
android:text="2"
|
|
|
|
|
android:background="@drawable/layout_rounded_bg_brand"
|
|
|
|
|
android:paddingLeft="2dp"
|
|
|
|
|
android:paddingRight="2dp"
|
|
|
|
|
android:textSize="10dp"
|
|
|
|
|
android:textColor="#ffffff" />
|
|
|
|
|
</FrameLayout>
|
2016-09-06 19:33:17 +00:00
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/achievement_text"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2016-09-08 15:22:59 +00:00
|
|
|
android:layout_gravity="center_horizontal"
|
2016-09-08 17:19:32 +00:00
|
|
|
android:layout_marginTop="2dp"
|
2016-09-08 15:22:59 +00:00
|
|
|
android:gravity="center" />
|
2016-09-06 19:33:17 +00:00
|
|
|
|
2016-09-08 15:22:59 +00:00
|
|
|
</LinearLayout>
|