diff options
author | 2010-06-17 11:18:54 +0900 | |
---|---|---|
committer | 2010-06-26 04:01:29 +0900 | |
commit | 2b2db815d29358d6ec6f023b09bb33d40cbefee0 (patch) | |
tree | ad7a87cac9512b7d7bf97331f71f3fee313c7312 /java/res/drawable | |
parent | c9e1a333eaa34b142fbd1c59293877e949813596 (diff) | |
download | latinime-2b2db815d29358d6ec6f023b09bb33d40cbefee0.tar.gz latinime-2b2db815d29358d6ec6f023b09bb33d40cbefee0.tar.xz latinime-2b2db815d29358d6ec6f023b09bb33d40cbefee0.zip |
Move KeyboardView in the framework to LatinKeyboardViewBase
Change-Id: I99e3ea5eb1f1f5e5f9b36306930cdf0f50acfb01
Diffstat (limited to 'java/res/drawable')
-rw-r--r-- | java/res/drawable/keyboard_key_feedback.xml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/java/res/drawable/keyboard_key_feedback.xml b/java/res/drawable/keyboard_key_feedback.xml new file mode 100644 index 000000000..159ba8686 --- /dev/null +++ b/java/res/drawable/keyboard_key_feedback.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2010 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. +--> + +<selector xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:state_long_pressable="true" + android:drawable="@drawable/keyboard_key_feedback_more_background" /> + + <item android:drawable="@drawable/keyboard_key_feedback_background" /> +</selector> |