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

github.com/stefan-niedermann/nextcloud-deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Scherzinger <info@andy-scherzinger.de>2019-03-03 21:19:09 +0300
committerAndy Scherzinger <info@andy-scherzinger.de>2019-03-03 21:19:09 +0300
commita8bb38bff68a7a34cfac51bae870d5323badf089 (patch)
treea9e24b436d455a502c5de4d3471953f47e149515 /app/src/main/res
parent40bb01d0915b8b378fa8aa7e5321f44fad39700e (diff)
add avatar fetching, add close icon tinting
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
Diffstat (limited to 'app/src/main/res')
-rw-r--r--app/src/main/res/drawable/ic_close_circle_white.xml8
-rw-r--r--app/src/main/res/layout/fragment_card_edit_tab_details.xml7
-rw-r--r--app/src/main/res/values/dimens.xml1
-rw-r--r--app/src/main/res/xml/network_security_config.xml4
4 files changed, 20 insertions, 0 deletions
diff --git a/app/src/main/res/drawable/ic_close_circle_white.xml b/app/src/main/res/drawable/ic_close_circle_white.xml
new file mode 100644
index 000000000..631859ee4
--- /dev/null
+++ b/app/src/main/res/drawable/ic_close_circle_white.xml
@@ -0,0 +1,8 @@
+<!-- drawable/close_circle.xml -->
+<vector xmlns:android="http://schemas.android.com/apk/res/android"
+ android:height="24dp"
+ android:width="24dp"
+ android:viewportWidth="24"
+ android:viewportHeight="24">
+ <path android:fillColor="#FFFFFF" android:pathData="M12,2C17.53,2 22,6.47 22,12C22,17.53 17.53,22 12,22C6.47,22 2,17.53 2,12C2,6.47 6.47,2 12,2M15.59,7L12,10.59L8.41,7L7,8.41L10.59,12L7,15.59L8.41,17L12,13.41L15.59,17L17,15.59L13.41,12L17,8.41L15.59,7Z" />
+</vector> \ No newline at end of file
diff --git a/app/src/main/res/layout/fragment_card_edit_tab_details.xml b/app/src/main/res/layout/fragment_card_edit_tab_details.xml
index 4691cab63..c4ac97a7a 100644
--- a/app/src/main/res/layout/fragment_card_edit_tab_details.xml
+++ b/app/src/main/res/layout/fragment_card_edit_tab_details.xml
@@ -28,6 +28,13 @@
android:hint="@string/simple_people" />
</LinearLayout>
+ <LinearLayout
+ android:id="@+id/peopleList"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:orientation="horizontal"
+ android:layout_marginStart="40dp"
+ android:layout_marginLeft="40dp"/>
<LinearLayout
android:layout_width="match_parent"
diff --git a/app/src/main/res/values/dimens.xml b/app/src/main/res/values/dimens.xml
index b77692d0d..74c7cea5c 100644
--- a/app/src/main/res/values/dimens.xml
+++ b/app/src/main/res/values/dimens.xml
@@ -9,4 +9,5 @@
<dimen name="fab_margin">16dp</dimen>
<dimen name="appbar_padding_top">8dp</dimen>
<dimen name="line_item_visual_size">40dp</dimen>
+ <dimen name="avatar_size">40dp</dimen>
</resources> \ No newline at end of file
diff --git a/app/src/main/res/xml/network_security_config.xml b/app/src/main/res/xml/network_security_config.xml
new file mode 100644
index 000000000..c15c09cbf
--- /dev/null
+++ b/app/src/main/res/xml/network_security_config.xml
@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="utf-8"?>
+<network-security-config>
+ <base-config cleartextTrafficPermitted="true"/>
+</network-security-config>