habitica-android/Habitica/res/layout/dialog_yesterdaily.xml

38 lines
1.5 KiB
XML
Raw Normal View History

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"
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"/>
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">
<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>
</ScrollView>
2017-06-20 21:29:26 +00:00
</LinearLayout>