2016-09-08 15:22:59 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
2019-08-24 10:33:14 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2016-09-08 15:22:59 +00:00
|
|
|
android:orientation="vertical"
|
2020-09-17 11:47:02 +00:00
|
|
|
android:paddingStart="24dip"
|
2016-09-08 17:19:32 +00:00
|
|
|
android:paddingTop="24dip"
|
2020-09-17 11:47:02 +00:00
|
|
|
android:paddingEnd="24dip">
|
2016-09-08 15:22:59 +00:00
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/achievement_image"
|
|
|
|
|
android:layout_width="30dp"
|
|
|
|
|
android:layout_height="33dp"
|
|
|
|
|
android:layout_gravity="center_horizontal" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/achievement_title"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:textStyle="bold"
|
2019-08-24 10:33:14 +00:00
|
|
|
android:paddingStart="15dip"
|
|
|
|
|
tools:text="example title" />
|
2016-09-08 15:22:59 +00:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/achievement_text"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2019-08-24 10:33:14 +00:00
|
|
|
tools:text="example text"
|
2016-09-08 15:22:59 +00:00
|
|
|
android:paddingTop="15dip" />
|
|
|
|
|
</LinearLayout>
|