mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-29 02:08:10 +00:00
34 lines
1.3 KiB
XML
34 lines
1.3 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:orientation="vertical" android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:background="@color/white">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/titleTextView"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="@string/welcome_back"
|
||
|
|
android:gravity="center"
|
||
|
|
android:padding="12dp"
|
||
|
|
style="@style/Title1"
|
||
|
|
android:background="@color/gray_700"/>
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_margin="14dp"
|
||
|
|
android:padding="8dp"
|
||
|
|
android:background="@color/gray_700"
|
||
|
|
android:orientation="vertical">
|
||
|
|
<TextView
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="@string/yesterdaililes_prompt" />
|
||
|
|
<LinearLayout
|
||
|
|
android:id="@+id/yesterdailies_list"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:orientation="vertical"
|
||
|
|
android:layout_marginTop="8dp"/>
|
||
|
|
</LinearLayout>
|
||
|
|
</LinearLayout>
|