diff options
Diffstat (limited to 'res/drawable')
-rw-r--r-- | res/drawable/check_circle_grey_large_not_select.xml | 32 | ||||
-rw-r--r-- | res/drawable/ic_check_24dp_not_select.xml | 9 | ||||
-rw-r--r-- | res/drawable/option_border_new_selection.xml | 31 |
3 files changed, 72 insertions, 0 deletions
diff --git a/res/drawable/check_circle_grey_large_not_select.xml b/res/drawable/check_circle_grey_large_not_select.xml new file mode 100644 index 00000000..544d852d --- /dev/null +++ b/res/drawable/check_circle_grey_large_not_select.xml @@ -0,0 +1,32 @@ +<!-- + Copyright (C) 2021 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<layer-list xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:androidprv="http://schemas.android.com/apk/prv/res/android"> + <item> + <shape android:shape="oval"> + <size android:width="@dimen/center_check_size" + android:height="@dimen/center_check_size" /> + <solid android:color="@color/check_circle_grey_large_not_select_background_color" /> + </shape> + </item> + <item> + <inset android:drawable="@drawable/ic_check_24dp_not_select" + android:insetTop="@dimen/center_check_padding" + android:insetRight="@dimen/center_check_padding" + android:insetBottom="@dimen/center_check_padding" + android:insetLeft="@dimen/center_check_padding"/> + </item> +</layer-list> diff --git a/res/drawable/ic_check_24dp_not_select.xml b/res/drawable/ic_check_24dp_not_select.xml new file mode 100644 index 00000000..e6af76c7 --- /dev/null +++ b/res/drawable/ic_check_24dp_not_select.xml @@ -0,0 +1,9 @@ +<vector xmlns:android="http://schemas.android.com/apk/res/android" + android:width="24dp" + android:height="24dp" + android:viewportWidth="24" + android:viewportHeight="24"> + <path + android:fillColor="@color/check_circle_grey_large_not_select_color" + android:pathData="M9,16.17L4.83,12l-1.42,1.41L9,19 21,7l-1.41,-1.41L9,16.17z"/> +</vector> diff --git a/res/drawable/option_border_new_selection.xml b/res/drawable/option_border_new_selection.xml new file mode 100644 index 00000000..6c02caa0 --- /dev/null +++ b/res/drawable/option_border_new_selection.xml @@ -0,0 +1,31 @@ +<?xml version="1.0" encoding="utf-8"?><!-- + Copyright (C) 2019 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<ripple xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:androidprv="http://schemas.android.com/apk/prv/res/android" + android:color="?android:attr/colorControlHighlight"> + <item android:id="@android:id/mask"> + <shape android:shape="rectangle"> + <solid android:color="@android:color/white"/> + <corners android:radius="@dimen/option_tile_radius" /> + </shape> + </item> + <item> + <shape android:shape="rectangle"> + <solid android:color="@color/option_background_new_selection_color" /> + <corners android:radius="@dimen/option_tile_radius" /> + </shape> + </item> +</ripple> |