diff options
author | Camil Staps | 2015-04-08 22:19:04 +0200 |
---|---|---|
committer | Camil Staps | 2015-04-08 22:19:04 +0200 |
commit | 19687378e6c59233725e0b7b1580140642e13a47 (patch) | |
tree | 9fc92307c0fc4b1404151dcf5ba65986a140de92 /app/src/main/res/layout/pager_content.xml | |
parent | Fixed bug not updating reading after language change (diff) |
Made an incomplete, messy start with ViewPager
Diffstat (limited to 'app/src/main/res/layout/pager_content.xml')
-rw-r--r-- | app/src/main/res/layout/pager_content.xml | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/app/src/main/res/layout/pager_content.xml b/app/src/main/res/layout/pager_content.xml new file mode 100644 index 0000000..0f53c69 --- /dev/null +++ b/app/src/main/res/layout/pager_content.xml @@ -0,0 +1,54 @@ +<?xml version="1.0" encoding="utf-8"?> +<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/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/dateDailyReading" + 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 Reading" + android:id="@+id/textDailyReading" + android:layout_gravity="left|top" + android:layout_marginBottom="10dp" + android:textIsSelectable="true"/> + + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="Bible Text" + android:id="@+id/refDailyReadingBibleText" + 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 Reading Bible text" + android:id="@+id/textDailyReadingBibleText" + android:layout_gravity="left|top" + android:textIsSelectable="true"/> + + </LinearLayout> +</ScrollView>
\ No newline at end of file |