mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-27 08:40:00 +00:00
181 lines
8.5 KiB
XML
181 lines
8.5 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:orientation="vertical"
|
||
|
|
tools:context="com.habitrpg.android.habitica.ui.activities.FixCharacterValuesActivity">
|
||
|
|
<android.support.design.widget.AppBarLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content">
|
||
|
|
|
||
|
|
<android.support.v7.widget.Toolbar
|
||
|
|
android:id="@+id/toolbar"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:minHeight="?attr/actionBarSize"
|
||
|
|
android:theme="@style/Toolbar"
|
||
|
|
app:layout_scrollFlags="scroll|enterAlways"
|
||
|
|
app:popupTheme="@style/ThemeOverlay.AppCompat.Dark"/>
|
||
|
|
|
||
|
|
</android.support.design.widget.AppBarLayout>
|
||
|
|
<ScrollView android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent">
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:orientation="vertical">
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/textView5"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_margin="@dimen/outer_inset"
|
||
|
|
android:text="@string/fix_character_description" />
|
||
|
|
|
||
|
|
<TableLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_marginLeft="@dimen/outer_inset"
|
||
|
|
android:layout_marginRight="@dimen/outer_inset">
|
||
|
|
<TableRow>
|
||
|
|
<TextView
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="@string/stats"
|
||
|
|
style="@style/TableHeader"
|
||
|
|
/>
|
||
|
|
</TableRow>
|
||
|
|
<TableRow
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:text="@string/HP_default"
|
||
|
|
android:labelFor="@+id/healthEditText"/>
|
||
|
|
|
||
|
|
<EditText
|
||
|
|
android:id="@id/healthEditText"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:ems="10"
|
||
|
|
android:inputType="number" />
|
||
|
|
</TableRow>
|
||
|
|
|
||
|
|
<TableRow
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:text="@string/XP_default"
|
||
|
|
android:labelFor="@+id/experienceEditText" />
|
||
|
|
|
||
|
|
<EditText
|
||
|
|
android:id="@id/experienceEditText"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:ems="10"
|
||
|
|
android:inputType="number" />
|
||
|
|
</TableRow>
|
||
|
|
|
||
|
|
<TableRow
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:text="@string/gold_singular"
|
||
|
|
android:labelFor="@+id/goldEditText"/>
|
||
|
|
|
||
|
|
<EditText
|
||
|
|
android:id="@id/goldEditText"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:ems="10"
|
||
|
|
android:inputType="number" />
|
||
|
|
</TableRow>
|
||
|
|
|
||
|
|
<TableRow
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:text="@string/MP_default"
|
||
|
|
android:labelFor="@+id/manaEditText"/>
|
||
|
|
|
||
|
|
<EditText
|
||
|
|
android:id="@id/manaEditText"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:ems="10"
|
||
|
|
android:inputType="number" />
|
||
|
|
</TableRow>
|
||
|
|
|
||
|
|
<TableRow
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:text="@string/level"
|
||
|
|
android:labelFor="@+id/levelEditText"/>
|
||
|
|
|
||
|
|
<EditText
|
||
|
|
android:id="@id/levelEditText"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:ems="10"
|
||
|
|
android:inputType="number" />
|
||
|
|
</TableRow>
|
||
|
|
|
||
|
|
<TableRow>
|
||
|
|
<TextView
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="@string/profile_achievements"
|
||
|
|
style="@style/TableHeader"
|
||
|
|
/>
|
||
|
|
</TableRow>
|
||
|
|
|
||
|
|
<TableRow
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent" >
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:text="@string/streak_label"
|
||
|
|
android:labelFor="@+id/streakEditText"/>
|
||
|
|
|
||
|
|
<EditText
|
||
|
|
android:id="@id/streakEditText"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:ems="10"
|
||
|
|
android:inputType="number" />
|
||
|
|
</TableRow>
|
||
|
|
|
||
|
|
</TableLayout>
|
||
|
|
</LinearLayout>
|
||
|
|
</ScrollView>
|
||
|
|
</LinearLayout>
|