mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-12-11 19:27:50 +01:00
8cce2d1362
As requested in #736, this adds an entry in the settings menu that allows to blacklist certain calendars. To avoid confusion, all the former blacklist methods and fields have been renamed to apps_blacklist. The new entries are called calendars_blacklist. Importing the settings has not been tested with the current changes. Closes #736 Future improvements TODO: The new setting lives in the Pebble section, i believe in the future the blackslist functionality should be centralized and put in the sidebar.
15 lines
540 B
XML
15 lines
540 B
XML
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:context="nodomain.freeyourgadget.gadgetbridge.activities.CalBlacklistActivity">
|
|
|
|
<ListView
|
|
android:id="@+id/calListView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_centerHorizontal="true"
|
|
android:divider="@null" />
|
|
|
|
</RelativeLayout>
|