diff options
Diffstat (limited to 'app/src/main/res/layout')
3 files changed, 7 insertions, 8 deletions
diff --git a/app/src/main/res/layout/pager_content_dailymeditation.xml b/app/src/main/res/layout/pager_content_dailymeditation.xml index 2d096f0..234819b 100644 --- a/app/src/main/res/layout/pager_content_dailymeditation.xml +++ b/app/src/main/res/layout/pager_content_dailymeditation.xml @@ -31,8 +31,7 @@ android:text="Daily Meditation" android:id="@+id/textDailyMeditation" android:layout_gravity="left|top" - android:layout_marginBottom="10dp" - android:textIsSelectable="true"/> + android:layout_marginBottom="10dp"/> </LinearLayout> </ScrollView>
\ No newline at end of file diff --git a/app/src/main/res/layout/pager_content_dailyreading.xml b/app/src/main/res/layout/pager_content_dailyreading.xml index 2297baa..28fca31 100644 --- a/app/src/main/res/layout/pager_content_dailyreading.xml +++ b/app/src/main/res/layout/pager_content_dailyreading.xml @@ -31,8 +31,7 @@ android:text="Daily Reading" android:id="@+id/textDailyReading" android:layout_gravity="left|top" - android:layout_marginBottom="10dp" - android:textIsSelectable="true"/> + android:layout_marginBottom="10dp"/> <TextView android:layout_width="wrap_content" @@ -48,8 +47,7 @@ android:layout_height="wrap_content" android:text="Daily Reading Bible text" android:id="@+id/textDailyReadingBibleText" - android:layout_gravity="left|top" - android:textIsSelectable="true"/> + android:layout_gravity="left|top"/> </LinearLayout> </ScrollView>
\ No newline at end of file diff --git a/app/src/main/res/layout/pager_content_podcast_item.xml b/app/src/main/res/layout/pager_content_podcast_item.xml index 22e45d0..90e150a 100644 --- a/app/src/main/res/layout/pager_content_podcast_item.xml +++ b/app/src/main/res/layout/pager_content_podcast_item.xml @@ -2,12 +2,14 @@ <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" - android:orientation="vertical" > + android:orientation="vertical" + android:padding="@dimen/podcast_row_padding"> <TextView android:id="@+id/podcast_date" android:layout_width="wrap_content" - android:layout_height="wrap_content"/> + android:layout_height="wrap_content" + android:textSize="@dimen/large_text_size"/> <TextView android:id="@+id/podcast_title" |