summaryrefslogtreecommitdiff
path: root/res/drawable
diff options
context:
space:
mode:
authorTyler Gunn <tgunn@google.com>2014-05-13 17:20:09 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-05-13 17:20:09 +0000
commit407b33b43f6995a1d015b4ef787da1f05e791b70 (patch)
treef139dacfc1caacb8b4859e12cf8f80d4eaf4d296 /res/drawable
parentf39fccc2aeed0e12906fd5dd0f8b0c67c7814147 (diff)
parent8bfb24b6e9f6c643120add136077d7494feb57b0 (diff)
Merge "Added touch feedback to call log rows for primary action area. Added touch feedback to call log action buttons."
Diffstat (limited to 'res/drawable')
-rw-r--r--res/drawable/action_button_background.xml27
-rw-r--r--res/drawable/call_log_background.xml19
2 files changed, 46 insertions, 0 deletions
diff --git a/res/drawable/action_button_background.xml b/res/drawable/action_button_background.xml
new file mode 100644
index 000000000..895bda147
--- /dev/null
+++ b/res/drawable/action_button_background.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ Copyright (C) 2014 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.
+-->
+<touch-feedback xmlns:android="http://schemas.android.com/apk/res/android"
+ android:tint="?android:attr/colorButtonPressed"
+ android:pinned="true">
+ <!-- Transparent background constrains the touch feedback ripple to the button, but also allows
+ touch feedback ripples in the parent to show under the button. -->
+ <item>
+ <shape android:shape="rectangle" >
+ <solid android:color="@android:color/transparent" />
+ </shape>
+ </item>
+</touch-feedback>
diff --git a/res/drawable/call_log_background.xml b/res/drawable/call_log_background.xml
new file mode 100644
index 000000000..92299f0ff
--- /dev/null
+++ b/res/drawable/call_log_background.xml
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ Copyright (C) 2014 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.
+-->
+<touch-feedback xmlns:android="http://schemas.android.com/apk/res/android"
+ android:tint="?android:attr/colorButtonPressed"
+ android:pinned="false" />