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

github.com/nextcloud/news-android.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoremasty <emasty@gmail.com>2020-01-07 02:34:08 +0300
committeremasty <emasty@gmail.com>2020-01-07 02:34:08 +0300
commita65a8138879abc58555c9f97e996dc83af23b163 (patch)
treecbb70b07d5cf7a04528912dbf1a7994d540d4cf9 /News-Android-App/src/main/res/drawable
parent21b6a6d34556a55eb517567cbc9599135632ae7c (diff)
Moved settings
Moved settings: - Integrated server settings into global settings - Moved settings out of article list options menu to bottom of drawer - Moved add-feed item to end of feeds list - Reorganized options in menu of article list. Now only article related settings are included Removed wrong usage of id R.id.action_settings in SyncIntervalSelectorActivity. Signed-off-by: emasty <emasty@gmail.com>
Diffstat (limited to 'News-Android-App/src/main/res/drawable')
-rw-r--r--News-Android-App/src/main/res/drawable/ic_add_black_24dp.xml5
-rw-r--r--News-Android-App/src/main/res/drawable/ic_settings_black_24dp.xml5
-rw-r--r--News-Android-App/src/main/res/drawable/navigationview_bg.xml12
3 files changed, 22 insertions, 0 deletions
diff --git a/News-Android-App/src/main/res/drawable/ic_add_black_24dp.xml b/News-Android-App/src/main/res/drawable/ic_add_black_24dp.xml
new file mode 100644
index 00000000..1bb75156
--- /dev/null
+++ b/News-Android-App/src/main/res/drawable/ic_add_black_24dp.xml
@@ -0,0 +1,5 @@
+<vector android:height="24dp" android:tint="#3A3A3A"
+ android:viewportHeight="24.0" android:viewportWidth="24.0"
+ android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
+ <path android:fillColor="#FF000000" android:pathData="M19,13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"/>
+</vector>
diff --git a/News-Android-App/src/main/res/drawable/ic_settings_black_24dp.xml b/News-Android-App/src/main/res/drawable/ic_settings_black_24dp.xml
new file mode 100644
index 00000000..e18c15c4
--- /dev/null
+++ b/News-Android-App/src/main/res/drawable/ic_settings_black_24dp.xml
@@ -0,0 +1,5 @@
+<vector android:height="24dp" android:tint="#3A3A3A"
+ android:viewportHeight="24" android:viewportWidth="24"
+ android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
+ <path android:fillColor="#FF000000" android:pathData="M19.1,12.9a2.8,2.8 0,0 0,0.1 -0.9,2.8 2.8,0 0,0 -0.1,-0.9l2.1,-1.6a0.7,0.7 0,0 0,0.1 -0.6L19.4,5.5a0.7,0.7 0,0 0,-0.6 -0.2l-2.4,1a6.5,6.5 0,0 0,-1.6 -0.9l-0.4,-2.6a0.5,0.5 0,0 0,-0.5 -0.4H10.1a0.5,0.5 0,0 0,-0.5 0.4L9.3,5.4a5.6,5.6 0,0 0,-1.7 0.9l-2.4,-1a0.4,0.4 0,0 0,-0.5 0.2l-2,3.4c-0.1,0.2 0,0.4 0.2,0.6l2,1.6a2.8,2.8 0,0 0,-0.1 0.9,2.8 2.8,0 0,0 0.1,0.9L2.8,14.5a0.7,0.7 0,0 0,-0.1 0.6l1.9,3.4a0.7,0.7 0,0 0,0.6 0.2l2.4,-1a6.5,6.5 0,0 0,1.6 0.9l0.4,2.6a0.5,0.5 0,0 0,0.5 0.4h3.8a0.5,0.5 0,0 0,0.5 -0.4l0.3,-2.6a5.6,5.6 0,0 0,1.7 -0.9l2.4,1a0.4,0.4 0,0 0,0.5 -0.2l2,-3.4c0.1,-0.2 0,-0.4 -0.2,-0.6ZM12,15.6A3.6,3.6 0,1 1,15.6 12,3.6 3.6,0 0,1 12,15.6Z"/>
+</vector>
diff --git a/News-Android-App/src/main/res/drawable/navigationview_bg.xml b/News-Android-App/src/main/res/drawable/navigationview_bg.xml
new file mode 100644
index 00000000..b751c946
--- /dev/null
+++ b/News-Android-App/src/main/res/drawable/navigationview_bg.xml
@@ -0,0 +1,12 @@
+<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
+ <item>
+ <shape android:shape="rectangle">
+ <solid android:color="@color/menuSeparator" />
+ </shape>
+ </item>
+ <item android:top="1dp">
+ <shape android:shape="rectangle">
+ <solid android:color="@color/app_drawer_feed_list_background_color" />
+ </shape>
+ </item>
+</layer-list> \ No newline at end of file