views:

28

answers:

1

Hi,..

Can anyone tell me how to make a flexible AppWidgets in android according to the screen size. I want to make a full screen widget, but when it change screen size, i want to make it flexible.

Thanks.

+1  A: 

I want to make a full screen widget

You cannot make a full-screen app widget.

You can create an app widget that takes up a certain number of cells, by following the instructions, which show you how to provide dimensions in dip that equate to a certain number of cells. Exactly how many cells a given home screen application will support is up to the home screen author.

In general, you want your app widget to be as small as possible, not as large as possible. A user may not have room anywhere for a large app widget.

CommonsWare
Thanks for the info..