aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/pager_content_dailymeditation.xml
blob: 2d096f0004f49b29019dadce363553e3507dd882 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?xml version="1.0" encoding="utf-8"?>
<ScrollView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/pager_content"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingLeft="10dp"
    android:paddingBottom="10dp"
    android:paddingTop="10dp"
    android:paddingRight="0dp">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        android:layout_weight="1.0"
        android:paddingRight="10dp">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Date"
            android:id="@+id/dateDailyMeditation"
            android:layout_gravity="center"
            android:layout_marginBottom="6dp"
            android:textStyle="bold"/>

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Daily Meditation"
            android:id="@+id/textDailyMeditation"
            android:layout_gravity="left|top"
            android:layout_marginBottom="10dp"
            android:textIsSelectable="true"/>

    </LinearLayout>
</ScrollView>