Right now only replacing the icon in the action bar is supported.
That's why the term "Icon Pack" is used in the UI.
Known bug: In a PreferenceActivity the second level still shows the
default app icon in the action bar :(
Icon packs need to include an activity with an intent filter for
the action "org.k9mail.THEME_PACK".
Example:
<activity android:name=".SomeActivity">
<intent-filter>
<action android:name="org.k9mail.THEME_PACK" />
</intent-filter>
<!-- Version number for the theme pack format -->
<meta-data android:name="version" android:value="1"/>
<meta-data android:name="name" android:value="Fancy icon"/>
<meta-data android:name="author" android:value="cketti"/>
<meta-data android:name="icon_app"
android:resource="@drawable/ic_app"/>
</activity>
After reinstalling K-9 on my new mobile, I observed some misinterpretations and I fixed them.
I hope this translation makes it in the stable version 4.400.
Enjoy
* 'Issue_4503_auto-fit_messages_option' of https://github.com/zjw/k-9:
Revert "Don't show a disabled preference if there is nothing a user can do to enable it."
Fix indentation
Correct preference version number.
Issue 4503: Auto-fit messages option
Don't show a disabled preference if there is nothing a user can do to enable it.
The PREFIX quote style was using an empty line between the header and
the quote. But mail apps using this way of quoting style do not have an
empty line between the quote header and the quote.
This was disabled in faa666394c
because it isn't possible to extract the name of the android
contact in the 'ORDER BY...' clause when querying the database.
Instead it simply sorts by the email address.
This may cause the same contact to appear multiple times in
the list, if they have multiple email addresses assigned.
But in most cases this is good enough and surely better than
not having the option to sort by sender at all.
Desktop mail clients such as Thunderbird also simply use the
sender email information when sorting the column.
This also adds a SenderComparator for usage in the MergeCursor.