Update changelog

This commit is contained in:
stefan-niedermann 2019-12-29 10:56:24 +01:00
parent 11c3df9fca
commit 04471e5df7
6 changed files with 35 additions and 14 deletions

View file

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?><!-- Selector is used for Background Colors in List Items -->
<ripple xmlns:android="http://schemas.android.com/apk/res/android" android:color="@color/bg_highlighted">
<!-- :selected -->
<item>
<selector>
<item android:state_selected="true">
<color android:color="@color/bg_highlighted" />
</item>
<item android:state_activated="true">
<color android:color="@color/bg_highlighted" />
</item>
<item>
<color android:color="@color/bg_normal" />
</item>
</selector>
</item>
</ripple>

View file

@ -3,4 +3,4 @@
<!-- :selected -->
<item android:drawable="@color/bg_highlighted" android:state_selected="true" />
<item android:drawable="@color/bg_normal" />
</selector>
</selector>

View file

@ -17,11 +17,11 @@
android:contentDescription="@string/menu_favorite"
app:srcCompat="@drawable/ic_star_white_24dp" />
<androidx.appcompat.widget.AppCompatImageView
<ImageView
android:id="@+id/noteDeleteRight"
android:layout_width="32dp"
android:layout_height="32dp"
android:layout_gravity="right|end|center_vertical"
android:layout_gravity="end|center_vertical"
android:layout_marginEnd="@dimen/button_padding"
android:layout_marginRight="@dimen/button_padding"
android:contentDescription="@string/menu_delete"
@ -46,7 +46,6 @@
android:layout_height="match_parent"
tools:src="@drawable/ic_star_yellow_24dp"/>
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/noteStatus"
android:layout_width="wrap_content"
@ -66,14 +65,15 @@
android:layout_height="wrap_content"
android:paddingTop="16dp"
android:paddingRight="16dp"
android:paddingEnd="16dp"
android:paddingLeft="0dp"
android:paddingStart="0dp"
android:paddingBottom="16dp"
android:orientation="vertical"
android:background="@drawable/list_item_background_selector">
android:orientation="vertical">
<androidx.appcompat.widget.LinearLayoutCompat
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/list_item_background_selector">
android:layout_height="wrap_content">
<TextView
android:id="@+id/noteTitle"
@ -89,9 +89,7 @@
<androidx.appcompat.widget.LinearLayoutCompat
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/list_item_background_selector">
android:layout_height="wrap_content">
<TextView
android:id="@+id/noteExcerpt"
@ -133,6 +131,7 @@
<ImageView
android:layout_width="match_parent"
android:layout_height="1px"
android:contentDescription="@null"
android:src="@color/separator" />
</FrameLayout>

View file

@ -6,7 +6,7 @@
<color name="separator">#262626</color>
<color name="bg_highlighted">#111</color>
<color name="bg_highlighted">#060606</color>
<color name="bg_normal">#222222</color>
<color name="bg_attention">#ff3333</color>
<color name="fg_default">#eeeeee</color>

View file

@ -7,7 +7,7 @@
<color name="separator">#fbfbfb</color>
<color name="bg_highlighted">#f3f3f3</color>
<color name="bg_highlighted">#eee</color>
<color name="bg_normal">#ffffff</color>
<color name="bg_attention">#d40000</color>
<color name="bg_warning">#ffcc00</color>

View file

@ -1 +1,2 @@
- Disable accountchooser after added a new account
- Disable accountchooser after added a new account
- Enable ripple effect on selecting a note