2015-11-04 23:30:42 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
|
|
|
|
<layout xmlns:bind="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
|
|
|
|
|
|
<android.support.v4.widget.NestedScrollView
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:scrollbarSize="3dp"
|
|
|
|
|
android:scrollbarThumbVertical="@color/md_grey_500"
|
|
|
|
|
|
|
|
|
|
android:scrollbars="vertical">
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:layout_width="72dp"
|
|
|
|
|
android:layout_height="72dp"
|
|
|
|
|
android:src="@mipmap/ic_launcher"
|
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
|
android:layout_marginTop="30dp" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/twitter"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:autoLink="web"
|
|
|
|
|
android:text="\@habitica"
|
|
|
|
|
android:textSize="@dimen/abc_text_size_title_material"
|
|
|
|
|
android:textStyle="bold"
|
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
|
android:layout_marginTop="10sp" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/webSite"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="www.habitica.com"
|
|
|
|
|
android:autoLink="web"
|
|
|
|
|
android:textSize="@dimen/abc_text_size_title_material"
|
|
|
|
|
android:textStyle="bold"
|
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
|
android:layout_marginTop="10sp" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/wiki"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="http://habitica.wikia.com/"
|
|
|
|
|
android:autoLink="web"
|
|
|
|
|
android:textSize="@dimen/abc_text_size_title_material"
|
|
|
|
|
android:textStyle="bold"
|
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
|
android:layout_marginTop="20sp" />
|
|
|
|
|
|
|
|
|
|
<View
|
|
|
|
|
android:id="@+id/lineDivider"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="1dp"
|
|
|
|
|
android:background="@android:color/darker_gray"
|
|
|
|
|
android:layout_marginTop="20sp" />
|
|
|
|
|
|
2015-11-05 21:28:17 +00:00
|
|
|
<Button
|
|
|
|
|
android:id="@+id/googlePlayStoreButton"
|
|
|
|
|
android:layout_width="250dp"
|
2015-11-04 23:30:42 +00:00
|
|
|
android:layout_height="wrap_content"
|
2015-11-05 21:28:17 +00:00
|
|
|
android:text="@string/about.rate_our_app"
|
2015-11-04 23:30:42 +00:00
|
|
|
android:textSize="@dimen/abc_text_size_title_material"
|
|
|
|
|
android:layout_gravity="center_horizontal"
|
2015-11-05 21:28:17 +00:00
|
|
|
android:layout_marginTop="5sp" />
|
2015-11-04 23:30:42 +00:00
|
|
|
|
|
|
|
|
<Button
|
2015-11-05 21:28:17 +00:00
|
|
|
android:id="@+id/reportBug"
|
|
|
|
|
android:layout_width="250dp"
|
2015-11-04 23:30:42 +00:00
|
|
|
android:layout_height="wrap_content"
|
2015-11-05 21:28:17 +00:00
|
|
|
android:text="@string/about.bugreport"
|
2015-11-04 23:30:42 +00:00
|
|
|
android:textSize="@dimen/abc_text_size_title_material"
|
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
|
android:layout_marginTop="20sp" />
|
|
|
|
|
|
|
|
|
|
<Button
|
2015-11-05 21:28:17 +00:00
|
|
|
android:id="@+id/sendFeedback"
|
|
|
|
|
android:layout_width="250dp"
|
2015-11-04 23:30:42 +00:00
|
|
|
android:layout_height="wrap_content"
|
2015-11-05 02:28:37 +00:00
|
|
|
android:text="@string/about.give_us_feedback"
|
2015-11-04 23:30:42 +00:00
|
|
|
android:textSize="@dimen/abc_text_size_title_material"
|
2015-11-05 21:28:17 +00:00
|
|
|
android:layout_marginTop="20sp"
|
|
|
|
|
android:layout_gravity="center_horizontal" />
|
2015-11-04 23:30:42 +00:00
|
|
|
|
2015-11-05 21:28:17 +00:00
|
|
|
<View
|
|
|
|
|
android:id="@+id/lineDivider2"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="1dp"
|
|
|
|
|
android:background="@android:color/darker_gray"
|
|
|
|
|
android:layout_marginTop="5sp" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/sourceCodeLink"
|
|
|
|
|
android:layout_width="347dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="@string/about.habitica_open_source"
|
|
|
|
|
android:textSize="@dimen/abc_text_size_title_material"
|
|
|
|
|
android:textStyle="bold"
|
|
|
|
|
android:layout_marginTop="20sp"
|
|
|
|
|
android:layout_gravity="center_horizontal" />
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
android:id="@+id/sourceCodeButton"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="@string/about.source_code"
|
|
|
|
|
android:textSize="@dimen/abc_text_size_title_material"
|
|
|
|
|
android:layout_marginTop="2sp"
|
|
|
|
|
android:layout_gravity="center_horizontal" />
|
2015-11-04 23:30:42 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
</android.support.v4.widget.NestedScrollView>
|
|
|
|
|
</layout>
|