mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-29 02:08:10 +00:00
137 lines
6.3 KiB
XML
137 lines
6.3 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<android.support.v4.widget.NestedScrollView
|
||
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
|
android:scrollbarSize="3dp"
|
||
|
|
android:scrollbarThumbVertical="@color/md_grey_500"
|
||
|
|
android:scrollbars="vertical"
|
||
|
|
android:background="@color/white">
|
||
|
|
<LinearLayout
|
||
|
|
android:orientation="vertical"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:paddingTop="12dp"
|
||
|
|
android:paddingBottom="20dp">
|
||
|
|
<com.habitrpg.android.habitica.ui.views.StatsView
|
||
|
|
android:id="@+id/strengthStatsView"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
app:statsTitle="@string/strength"
|
||
|
|
app:titleBackgroundColor="@color/red_50"
|
||
|
|
android:layout_marginBottom="12dp"/>
|
||
|
|
<com.habitrpg.android.habitica.ui.views.StatsView
|
||
|
|
android:id="@+id/intelligenceStatsView"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
app:statsTitle="@string/intelligence"
|
||
|
|
app:titleBackgroundColor="@color/blue_50"
|
||
|
|
android:layout_marginBottom="12dp"/>
|
||
|
|
<com.habitrpg.android.habitica.ui.views.StatsView
|
||
|
|
android:id="@+id/constitutionStatsView"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
app:statsTitle="@string/constitution"
|
||
|
|
app:titleBackgroundColor="@color/yellow_10"
|
||
|
|
android:layout_marginBottom="12dp"/>
|
||
|
|
<com.habitrpg.android.habitica.ui.views.StatsView
|
||
|
|
android:id="@+id/perceptionStatsView"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
app:statsTitle="@string/perception"
|
||
|
|
app:titleBackgroundColor="@color/brand_300"
|
||
|
|
android:layout_marginBottom="12dp"/>
|
||
|
|
<Switch
|
||
|
|
android:id="@+id/switch1"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="@string/auto_allocate_points"
|
||
|
|
android:layout_marginLeft="@dimen/content_border"
|
||
|
|
android:layout_marginRight="@dimen/content_border"/>
|
||
|
|
<View
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="1dp"
|
||
|
|
android:background="@color/gray_600"
|
||
|
|
android:layout_marginTop="20dp"
|
||
|
|
android:layout_marginBottom="20dp"/>
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginLeft="@dimen/content_border"
|
||
|
|
android:layout_marginRight="@dimen/content_border"
|
||
|
|
android:orientation="vertical">
|
||
|
|
<TextView
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="@string/stat_guide"
|
||
|
|
style="@style/Subheader2"/>
|
||
|
|
<TextView
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="@string/character_build"
|
||
|
|
style="@style/Subheader3"
|
||
|
|
android:layout_marginBottom="8dp"
|
||
|
|
android:layout_marginTop="18dp"
|
||
|
|
android:textColor="@color/gray_10"/>
|
||
|
|
<TextView
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="@string/character_build_description"
|
||
|
|
android:textColor="@color/gray_100"/>
|
||
|
|
<TextView
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="@string/strength"
|
||
|
|
style="@style/Subheader3"
|
||
|
|
android:layout_marginBottom="8dp"
|
||
|
|
android:layout_marginTop="28dp"
|
||
|
|
android:textColor="@color/red_10"/>
|
||
|
|
<TextView
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="@string/strength_description"
|
||
|
|
android:textColor="@color/gray_100"/>
|
||
|
|
<TextView
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="@string/intelligence"
|
||
|
|
style="@style/Subheader3"
|
||
|
|
android:layout_marginBottom="8dp"
|
||
|
|
android:layout_marginTop="28dp"
|
||
|
|
android:textColor="@color/blue_10"/>
|
||
|
|
<TextView
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="@string/intelligence_description"
|
||
|
|
android:textColor="@color/gray_100"/>
|
||
|
|
<TextView
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="@string/constitution"
|
||
|
|
style="@style/Subheader3"
|
||
|
|
android:layout_marginBottom="8dp"
|
||
|
|
android:layout_marginTop="28dp"
|
||
|
|
android:textColor="@color/yellow_10"/>
|
||
|
|
<TextView
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="@string/constitution_description"
|
||
|
|
android:textColor="@color/gray_100"/>
|
||
|
|
<TextView
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="@string/perception"
|
||
|
|
style="@style/Subheader3"
|
||
|
|
android:layout_marginBottom="8dp"
|
||
|
|
android:layout_marginTop="28dp"
|
||
|
|
android:textColor="@color/brand_300"/>
|
||
|
|
<TextView
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="@string/perception_description"
|
||
|
|
android:textColor="@color/gray_100"
|
||
|
|
android:layout_marginBottom="28dp"/>
|
||
|
|
</LinearLayout>
|
||
|
|
</LinearLayout>
|
||
|
|
</android.support.v4.widget.NestedScrollView>
|