2019-04-17 08:46:24 +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"
|
|
|
|
|
android:layout_height="wrap_content"
|
2022-11-22 14:48:15 +00:00
|
|
|
android:background="?attr/colorWindowBackground"
|
2019-04-24 08:17:24 +00:00
|
|
|
android:paddingTop="@dimen/spacing_large"
|
|
|
|
|
android:paddingBottom="@dimen/spacing_large"
|
2020-09-17 11:47:02 +00:00
|
|
|
android:paddingStart="@dimen/spacing_large"
|
|
|
|
|
android:paddingEnd="@dimen/spacing_large">
|
2019-04-17 08:46:24 +00:00
|
|
|
<TextView
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="@string/need_more_help"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:paddingBottom="@dimen/spacing_medium"
|
|
|
|
|
style="@style/Headline"
|
|
|
|
|
android:textStyle="bold"/>
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/text_view"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
tools:text="Post a message in the [Habitica Help Guild] to have your questions answered by a fellow player."
|
2019-04-24 08:17:24 +00:00
|
|
|
android:gravity="center"
|
|
|
|
|
style="@style/Body2"
|
|
|
|
|
android:lineSpacingExtra="4sp"/>
|
2019-04-17 08:46:24 +00:00
|
|
|
</LinearLayout>
|