Han
Han

Reputation: 650

How do I customize sample soft keyboard layout to fit tablet

I downloaded the source of the sample soft keyboard and tried it out in my tablet..but it looks like this:

enter image description here

How do I customize the layout a little bit so that it will fit into the screen? I have been reading through http://developer.android.com/resources/articles/creating-input-method.html but it does not help much with the layout customizing.

Upvotes: 1

Views: 503

Answers (1)

Madhu
Madhu

Reputation: 26

found the answer: In the manifest file

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

Upvotes: 1

Related Questions