habitica-android/Habitica/res/layout/world_boss_description_view.xml

87 lines
3.7 KiB
XML
Raw Normal View History

2018-02-13 12:01:52 +00:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
2018-02-13 12:43:48 +00:00
android:layout_height="match_parent"
2020-09-17 11:47:02 +00:00
android:paddingStart="@dimen/spacing_large"
android:paddingEnd="@dimen/spacing_large">
2018-02-13 12:01:52 +00:00
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/world_boss_description_intro"
android:gravity="center_horizontal"
android:layout_marginBottom="@dimen/spacing_large"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<View
android:layout_width="@dimen/bullet_size"
android:layout_height="@dimen/bullet_size"
2019-08-24 10:33:14 +00:00
android:layout_marginEnd="@dimen/spacing_medium"
2018-02-13 12:01:52 +00:00
android:background="@drawable/layout_rounded_bg_gray_50"
android:layout_marginTop="8dp"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/world_boss_description_1"
android:layout_marginBottom="@dimen/spacing_medium"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<View
android:layout_width="@dimen/bullet_size"
android:layout_height="@dimen/bullet_size"
2019-08-24 10:33:14 +00:00
android:layout_marginEnd="@dimen/spacing_medium"
2018-02-13 12:01:52 +00:00
android:background="@drawable/layout_rounded_bg_gray_50"
android:layout_marginTop="8dp"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/world_boss_description_2"
android:layout_marginBottom="@dimen/spacing_medium"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<View
android:layout_width="@dimen/bullet_size"
android:layout_height="@dimen/bullet_size"
2019-08-24 10:33:14 +00:00
android:layout_marginEnd="@dimen/spacing_medium"
2018-02-13 12:01:52 +00:00
android:background="@drawable/layout_rounded_bg_gray_50"
android:layout_marginTop="8dp"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/world_boss_description_3"
android:layout_marginBottom="@dimen/spacing_medium"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<View
android:layout_width="@dimen/bullet_size"
android:layout_height="@dimen/bullet_size"
2019-08-24 10:33:14 +00:00
android:layout_marginEnd="@dimen/spacing_medium"
2018-02-13 12:01:52 +00:00
android:background="@drawable/layout_rounded_bg_gray_50"
android:layout_marginTop="8dp"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/world_boss_description_4"
android:layout_marginBottom="@dimen/spacing_medium"/>
</LinearLayout>
<TextView
android:id="@+id/worldBossActionPromptView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:text="@string/world_boss_action_prompt"
android:padding="@dimen/spacing_medium"
tools:background="@drawable/rounded_border"
android:gravity="center_horizontal"/>
</LinearLayout>