Android AppWidget 使用 dimen 资源时没有更多空间

发布于 2024-12-21 17:23:31 字数 1146 浏览 5 评论 0原文

我为 AppWidget 创建了一个 XML 文件,如下所示。

xml/appwidget_4x1.xml

<?xml version="1.0" encoding="utf-8"?>
<appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android"
    android:minWidth="@dimen/AppWidget_4Cell"
    android:minHeight="@dimen/AppWidget_1Cell"
    android:updatePeriodMillis="0"
    android:previewImage="@drawable/appwidget_4x1_preview"
    android:initialLayout="@layout/appwidget_4x1_loading"
    android:resizeMode="horizontal"
    android:minResizeWidth="@dimen/AppWidget_3Cell" />

问题出在 Android 1.6 中,它显然不喜欢我对 minWidth 和 minHeight 使用 @dimen 语句。当发生这种情况并且用户将 AppWidget 放到屏幕上时,它会显示“此主屏幕上没有更多空间”。如果我明确使用尺寸,它会再次开始工作。

res/values/dimens.xml (1.6 - 3.2)

<dimen name="AppWidget_1Cell">72dp</dimen>
<dimen name="AppWidget_4Cell">294dp</dimen>

res/values-v14/dimens.xml (4.0+)

<dimen name="AppWidget_1Cell">40dp</dimen>
<dimen name="AppWidget_4Cell">250dp</dimen>

这是一个错误吗?如果是,解决方法是什么?我这样做是为了遵循 Ice Cream Sandwich 新小部件布局尺寸的建议。

I created an XML file for an AppWidget as shown below.

xml/appwidget_4x1.xml

<?xml version="1.0" encoding="utf-8"?>
<appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android"
    android:minWidth="@dimen/AppWidget_4Cell"
    android:minHeight="@dimen/AppWidget_1Cell"
    android:updatePeriodMillis="0"
    android:previewImage="@drawable/appwidget_4x1_preview"
    android:initialLayout="@layout/appwidget_4x1_loading"
    android:resizeMode="horizontal"
    android:minResizeWidth="@dimen/AppWidget_3Cell" />

The problem is in Android 1.6 it apparently doesn't like me using the @dimen statements for the minWidth and minHeight. When this happens and the user drops an AppWidget on the screen it says, "No more room on this home screen." If I use the dimensions explicitly it starts working again.

res/values/dimens.xml (1.6 - 3.2)

<dimen name="AppWidget_1Cell">72dp</dimen>
<dimen name="AppWidget_4Cell">294dp</dimen>

res/values-v14/dimens.xml (4.0+)

<dimen name="AppWidget_1Cell">40dp</dimen>
<dimen name="AppWidget_4Cell">250dp</dimen>

Is this a bug and if so what's the work around for this? I did it this way to follow the recommendations for Ice Cream Sandwich's new widget layout dimensions.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

爱的故事 2024-12-28 17:23:31

我刚刚尝试过,我的 Android 1.6 也出现了这种情况。
一种快速解决方法是创建不同的 xml 文件夹(一个用于 Android 1.6,一个用于其他版本)。因此,您可以使用:

xml-v4(适用于 Android 1.6),包含维度作为数值
xml-v5(对于其余的),包含尺寸为 @dimen/..

或者,您可以使用:

xml(对于 Android 1.6 - 3.2),包含尺寸为数字价值观
xml-v14(适用于 Android 4),包含新维度

不好的是你必须复制你的 appwidgetproviders xml 文件,但至少它可以工作。

嗯..我正在考虑放弃对 Android 1.6 的支持.....(目前为 1.3%...)。

干杯,
尤维

http://www.droidahead.com

I just tried that and it happens also to me with Android 1.6.
A quick fix is to create different xml folders (one for Android 1.6, and one for the other versions). So, you could have:

xml-v4 (for Android 1.6), containing dimensions as numeric values
xml-v5 (for the rest), containing dimensions as @dimen/..

or, you could have:

xml (for Android 1.6 - 3.2), containing dimensions as numeric values
xml-v14 (for Android 4), containing the new dimensions

What's bad is that you have to duplicate your appwidget providers xml files, but at least it works.

Mmm..I'm thinking about dropping support for Android 1.6.....(right now it's at 1.3%...).

Cheers,
Yuvi

http://www.droidahead.com

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文