I am currently trying to develop a fullscreen input method for Android, but I have a hard time finding any hints on this. The only examples and tutorials to be found are for non-fullscreen IMEs and mention fullscreen mode only very briefly.

Also every tutorial about input methods seems to assume that the input method has given size which does not change, but my implementations size does depend on the screen size.

So my question is, are there any resources like tutorials or examples of fullscreen IMEs in Android?

link|improve this question

Did you ever find a solution to this? If so please share. – znq Aug 25 '10 at 14:56
Well, I had to do "something" but I wouldn't count it as a solution. What I ended up with was a UI which was displayed full screen, but did not show any text field provided by android, so I had to add my own. I'm sure there must be a better way, so I guess I cannot help you :-/ – frenetisch applaudierend Aug 25 '10 at 19:41
feedback

1 Answer

I'm not exactly sure if that can help. Android only support 3 screen resolutions: Small, Big, Medium. So that might be why tutorials have a size that doesn't change. But if you were talking about size as in screen dimension. You might have a look to that.

Application.getResources().getDisplayMetrics()

There is the density,xdpi,ydpi fields that represents the pixel density on your display. You should be able to find the real screen dimension. But for some reasons, Your limitation isn't really the dimension of the screen but the resolution of the screen. For exemple, if you have a 10 inches screen with a resolution of 640, 480, that doesn't mean you can show more stuff on screen. It just means things will be bigger.

Hope that helps

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.