1

出于某种原因,我的应用程序小部件的父级比它应该的要大得多。这导致用户无法以他们应该能够的方式将图标向上移动到小部件上。

我希望它是 450x352,但 AppWdigetHostView 是 608x390,而父线性布局是 584x366。

在此处输入图像描述

widget_large_info.xml

<appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android"
android:minWidth="294dp"
android:minHeight="72dp"
android:updatePeriodMillis="86400000"
android:initialLayout="@layout/widget_layout_large" />

widget_layout_large.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_margin="0dip"
    android:background="#FF0000" >

<RelativeLayout
    android:layout_width="450dip"
    android:layout_height="352dip" >

    <!-- sub widgets and views -->

</RelativeLayout>
</LinearLayout>

有没有人见过这样的事情?无论我对宽度和高度做什么,它都不想正确调整自己的大小。

4

0 回答 0