0
我試過layout_width
屬性match_parent
以及fill_parent
在佈局文件的根元素上,主屏幕小部件。但是當在App Widget中顯示時,它仍然被包裹在內容中。App Widget總是圍繞內容環繞佈局
應用插件佈局:
<StackView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/xxxxxxxxx"
android:layout_width="match_parent" <!-- always acts like wrap_content -->
android:layout_height="fill_parent"
android:gravity="center"
android:loopViews="true" />
的Widget被分配4X2的網格大小:
<appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android"
android:minWidth="250dp"
android:minHeight="110dp"
. . . . . />
但還是被添加到主屏幕後,小工具的寬度不佔用4個格在主屏幕上,它僅包含內容。這怎麼解決?