Fix the mic icon key is not black in the black scheme.

Change-Id: I2be3507019601bc93a3e49cc60777e1515f53dc4
main
satok 2010-07-02 05:35:27 +09:00
parent c700ffcddf
commit a86a942d7c
1 changed files with 6 additions and 6 deletions

View File

@ -293,17 +293,17 @@ public class LatinKeyboard extends Keyboard {
mSpaceIcon = mRes.getDrawable(R.drawable.sym_bkeyboard_space);
mMicIcon = mRes.getDrawable(R.drawable.sym_bkeyboard_mic);
m123MicIcon = mRes.getDrawable(R.drawable.sym_bkeyboard_123_mic);
if (mF1Key != null) {
mF1Key.icon = mMicIcon;
}
} else {
mShiftLockIcon = mRes.getDrawable(R.drawable.sym_keyboard_shift_locked);
mSpaceIcon = mRes.getDrawable(R.drawable.sym_keyboard_space);
mMicIcon = mRes.getDrawable(R.drawable.sym_keyboard_mic);
m123MicIcon = mRes.getDrawable(R.drawable.sym_keyboard_123_mic);
if (mF1Key != null) {
mF1Key.icon = mMicIcon;
}
}
if (m123Key != null) {
m123Key.icon = m123MicIcon;
}
if (mF1Key != null) {
mF1Key.icon = mMicIcon;
}
if (mSpaceKey != null) {
mSpaceKey.icon = mSpaceIcon;