mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-28 01:54:52 +00:00
98 lines
3.9 KiB
XML
98 lines
3.9 KiB
XML
|
|
<?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" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/sourceCodeLink"
|
||
|
|
android:layout_width="347dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="Habitica is an open Source Code and you can find the code clicking here"
|
||
|
|
android:textSize="@dimen/abc_text_size_title_material"
|
||
|
|
android:textStyle="bold"
|
||
|
|
android:layout_gravity="center_horizontal"
|
||
|
|
android:layout_marginTop="30sp" />
|
||
|
|
|
||
|
|
<Button
|
||
|
|
android:id="@+id/googlePlayStoreButton"
|
||
|
|
android:layout_width="248dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="RATE OUR APP"
|
||
|
|
android:textSize="@dimen/abc_text_size_title_material"
|
||
|
|
android:layout_gravity="center_horizontal"
|
||
|
|
android:layout_marginTop="20sp" />
|
||
|
|
|
||
|
|
<Button
|
||
|
|
android:id="@+id/giveUsFeedback"
|
||
|
|
android:layout_width="253dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="Give us Feedback! :-)"
|
||
|
|
android:textSize="@dimen/abc_text_size_title_material"
|
||
|
|
android:layout_gravity="center_horizontal"
|
||
|
|
android:layout_marginTop="20sp" />
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
</android.support.v4.widget.NestedScrollView>
|
||
|
|
</layout>
|