Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/stefan-niedermann/nextcloud-notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Niedermann <stefan.niedermann@googlemail.com>2016-01-02 19:00:40 +0300
committerStefan Niedermann <stefan.niedermann@googlemail.com>2016-01-02 19:00:40 +0300
commitf4b35d5c8bf87ae73df56bae54e03c8215f25633 (patch)
tree28d64cd92569d7884e73d8c2023f95370f546812
parente93c7d2ff4680f0824fd005ff8e3214637c4149d (diff)
Fix #41 Align text of date dividers with the note text
-rw-r--r--app/src/main/res/layout/fragment_notes_list_section_item.xml5
1 files changed, 4 insertions, 1 deletions
diff --git a/app/src/main/res/layout/fragment_notes_list_section_item.xml b/app/src/main/res/layout/fragment_notes_list_section_item.xml
index 7075399a..52a8f0e3 100644
--- a/app/src/main/res/layout/fragment_notes_list_section_item.xml
+++ b/app/src/main/res/layout/fragment_notes_list_section_item.xml
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
-<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+<RelativeLayout
android:id="@+id/sectionItem"
+ xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="?android:attr/listPreferredItemHeight"
android:background="@color/bg_highlighted"
@@ -17,6 +18,8 @@
android:layout_alignWithParentIfMissing="true"
android:ellipsize="end"
android:gravity="center_vertical"
+ android:paddingLeft="8dp"
+ android:paddingRight="8dp"
android:textColor="@color/fg_default_selection"
android:textSize="12sp" />