为什么我的自定义软键盘的分辨率在 Android 平板电脑上没有增加?

发布于 2024-12-14 02:09:42 字数 205 浏览 0 评论 0原文

我正在定制android SDK的软键盘示例。当我把它安装在10英寸平板电脑上时,这个键盘的分辨率很低而且很难看。我的意思是它在平板电脑上使用 PocketPc 的分辨率。我使用 getMaxWidth() 方法获取软键盘的宽度,在 pocketpc (android 2.3) 和平板电脑 (android 3.2) 中,它返回 545。

如何根据设备的分辨率增加键盘的分辨率?

I am customizing the softkeyboard sample of android SDK. The resolution of this keyboard is low and ugly when I install it on the 10in tablet. I mean it uses the resolution of PocketPc on the Tablet Pc. I get the width of softkeyboard using method getMaxWidth() and in both pocketpc (android 2.3) and tablet (android 3.2) it returns 545.

How can I increase the resolution of my keyboard depending on the resolution of my device?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一绘本一梦想 2024-12-21 02:09:42

我找到了答案:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"     

    <supports-screens
        android:anyDensity="true"
        android:largeScreens="true"
        android:normalScreens="true"
        android:smallScreens="true" />

</manifest>

我的参考是此链接。

I found the answer:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"     

    <supports-screens
        android:anyDensity="true"
        android:largeScreens="true"
        android:normalScreens="true"
        android:smallScreens="true" />

</manifest>

My reference is this link.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文