Reputation: 67
I'm new with Widget development..I managed to built a widget, which could not be resized..I want it to be like - users manage to resize it according to themselves...Can someone tell me on how to make it possible?
Thanks friends.
Upvotes: 2
Views: 4136
Reputation: 4069
In AppWidgetProviderInfo.xml
android:resizeMode="horizontal|vertical"
//for resizing horizontal and vertical resizing of widget
or
android:resizeMode="none"
//for disabling resize of widget
Upvotes: 3
Reputation: 21
The "android:resizeMode" tag in AppWidgetProviderInfo specifies whether a user can resize the widget vertically, horizontally, both, or neither.
The documentation can be found here: http://developer.android.com/guide/topics/appwidgets/index.html#MetaData
Upvotes: 2