2017-06-20 21:29:26 +00:00
|
|
|
<?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"
|
2019-05-21 10:28:16 +00:00
|
|
|
android:background="@drawable/alert_dialog_background"
|
|
|
|
|
android:paddingTop="26dp"
|
|
|
|
|
android:paddingBottom="26dp">
|
2017-06-20 21:29:26 +00:00
|
|
|
<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"
|
2019-05-21 10:28:16 +00:00
|
|
|
style="@style/Title1"/>
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="@string/yesterdaililes_prompt"
|
|
|
|
|
android:layout_gravity="center"/>
|
2017-06-22 16:32:13 +00:00
|
|
|
<ScrollView
|
2017-06-20 21:29:26 +00:00
|
|
|
android:layout_width="match_parent"
|
2017-06-22 16:32:13 +00:00
|
|
|
android:layout_height="wrap_content">
|
2017-06-20 21:29:26 +00:00
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2017-06-22 16:32:13 +00:00
|
|
|
android:layout_margin="14dp"
|
|
|
|
|
android:padding="8dp"
|
|
|
|
|
android:background="@color/gray_700"
|
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/yesterdailies_list"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2019-05-21 10:28:16 +00:00
|
|
|
android:orientation="vertical"/>
|
2017-06-22 16:32:13 +00:00
|
|
|
</LinearLayout>
|
|
|
|
|
</ScrollView>
|
2019-05-21 10:28:16 +00:00
|
|
|
<Button
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
style="@style/HabiticaButton.Primary"
|
|
|
|
|
android:text="@string/start_day"/>
|
2017-06-22 16:32:13 +00:00
|
|
|
|
2017-06-20 21:29:26 +00:00
|
|
|
</LinearLayout>
|