全部,
我找不到以前提出过这个问题的任何线程,所以我一定错过了一些非常容易的事情。我是 android 新手,正在玩创建一个inputmethod
. 我抽出了锁屏的所有安卓代码,当我在模拟器或三星 Galaxy 上查看时,按钮上的字体看起来很完美。但是当我在我的 HTC Sensation 上查看它们时,一切都非常像素化。起初我认为问题出在sym_keyboard_numX
图像文件上,但我测试了两件事以确保不是这种情况:
- 我最初有这些的 hdpi 和 mdpi 图像。我删除了 mdpi 图像,只留下 hdpi 以确保不会加载错误的图像。
- 我尝试使用 a
keyLabel
而不是图像作为数字,但文本仍然非常像素化。
我查看了所有代码,寻找可能影响质量的任何值,但找不到任何东西。我很感激任何帮助!
这是定义键盘的 xml 文件。您会看到我keyLabels
在大多数按钮中都使用了一些按钮keyIcons
来测试差异。正如我所说,没有区别。我不知道任何其他对您有用的代码。
<?xml version="1.0" encoding="utf-8"?>
<!--
/*
**
** Copyright 2008, 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.
*/
-->
<Keyboard xmlns:android="http://schemas.android.com/apk/res/android"
android:keyWidth="33.33%p"
android:horizontalGap="2px"
android:verticalGap="0px"
android:keyHeight="@dimen/password_keyboard_key_height"
>
<Row>
<Key android:codes="49" android:keyLabel="1" android:keyEdgeFlags="left"/>
<Key android:codes="50" android:keyLabel="2"/>
<Key android:codes="51" android:keyLabel="3"/>
</Row>
<Row>
<Key android:codes="52" android:keyLabel="4" android:keyEdgeFlags="left"/>
<Key android:codes="53" android:keyIcon="@drawable/sym_keyboard_num5"/>
<Key android:codes="54" android:keyLabel="6"/>
</Row>
<Row>
<Key android:codes="55" android:keyLabel="7" android:keyEdgeFlags="left"/>
<Key android:codes="56" android:keyLabel="8"/>
<Key android:codes="57" android:keyLabel="9"/>
</Row>
<Row android:rowEdgeFlags="bottom">
<Key android:codes="10" android:keyIcon="@drawable/sym_keyboard_ok"/>
<Key android:codes="48" android:keyLabel="0"/>
<Key android:codes="-5" android:keyIcon="@drawable/sym_keyboard_delete"
android:iconPreview="@drawable/sym_keyboard_feedback_delete"
android:isRepeatable="true" android:keyEdgeFlags="right"/>
</Row>
</Keyboard>