开发者

Android Keyboard resolution

开发者 https://www.devze.com 2023-03-17 10:07 出处:网络
I\'m working on an android soft keyboard. It seems I keep making my canva开发者_开发知识库s about 533x320 resolution even though my phone (galaxy) is 800x480.

I'm working on an android soft keyboard. It seems I keep making my canva开发者_开发知识库s about 533x320 resolution even though my phone (galaxy) is 800x480.

I've even tried making onMeasure in my view call setMeasure with 800x480 with no luck.


<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.

0

精彩评论

暂无评论...
验证码 换一张
取 消