可以在支持 Android 3.0 的同时调整小部件的大小吗?
我想知道是否有可能以某种方式制作一个支持 Android 3.0 的应用程序,同时还可以在该应用程序中的小部件在 Android 3.1+ 上运行时调整大小。
我猜情况并非如此,但我想我应该先检查一下这里。谢谢!
I was wondering if it's possible to somehow make an application that supports Android 3.0 while also making it possible for widgets in that application to be resizable if it is run on Android 3.1+.
I'm guessing it's not the case, but I thought I'd check here first. Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Android 3.1 现在可以实现这一点
将以下内容添加到您的 appwidget-provide 元素中
android:resizeMode="horizontal|vertical"
来自谷歌的示例
我还没有尝试过,但此代码也应该适用于以前的Android版本(3.0以及2.X和1.X)
With Android 3.1 this is now possible
Add the following to your appwidget-provide element
android:resizeMode="horizontal|vertical"
Example from google
I haven't tried, but this code should also work on previousAndroid version (3.0 as well as 2.X and 1.X)