有一些问题,我的小部件。 当我把它放在destop(例如3×3大小),我可以看到下面的长按小部件后调整框架:
可以说,它的确定。 但是,当我改变手机方向,以水平我得到这个:
我的小工具变得越来越小,得到了广泛的调整框架
正如我测量,插件widgh是相同插件高度先前定向。
好了,让做出调整大小框架稍小一点,以在屏幕上得到一些额外的空间:
现在,再次更换手机的方向和:
窗口小部件的大小是糟糕的一次。
我没准儿做错了?
这是我的清单
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="at.widget.twil.jacob"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="8"/>
<application
android:allowBackup="false"
android:icon="@drawable/icon"
android:label="@string/app_name"
android:configChanges="orientation|screenSize">
<receiver
android:label="@string/small_name"
android:name="MyWidgetProvidersmall"
android:icon="@drawable/icon">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/widget_info_small" />
</receiver>
<receiver
android:label="@string/medium_name"
android:name="MyWidgetProvidermedium"
android:icon="@drawable/icon">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/widget_info_medium" />
</receiver>
<receiver
android:label="@string/large_name"
android:name="MyWidgetProviderlarge"
android:icon="@drawable/icon">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/widget_info_large" />
</receiver>
</application>
</manifest>
layout.xml
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
android:orientation="vertical"
android:id="@id/LinearLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:android="http://schemas.android.com/apk/res/android">
<ImageView
android:id="@id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:adjustViewBounds="false"
android:scaleType="centerInside"
android:src="@drawable/sticker" />
</FrameLayout>
对于不同尺寸的信息文件和一个(2×2 1×3×3)
<?xml version="1.0" encoding="utf-8"?>
<appwidget-provider
xmlns:android="http://schemas.android.com/apk/res/android"
android:updatePeriodMillis="0"
android:initialLayout="@layout/widget_layout"
android:minHeight="@dimen/AppWidget_3Cell"
android:minWidth="@dimen/AppWidget_3Cell"
android:resizeMode="horizontal|vertical" />
任何建议吗? 谢谢。 阿玛莉亚。