gpt4 book ai didi

android - 小部件在主屏幕中拉伸(stretch)。

转载 作者:行者123 更新时间:2023-11-29 01:53:02 24 4
gpt4 key购买 nike

我使用了下面的代码。

在我的 list 文件中。

 <receiver android:name=".ButtonWidget" android:label="@string/app_name">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
<!-- Broadcast Receiver that will also process our self created action -->
<action android:name="<package name>.android.widget.buttons.ButtonWidget.ACTION_WIDGET_RECEIVER"/>
</intent-filter>
<meta-data android:name="android.appwidget.provider" android:resource="@xml/appwidget" />
</receiver>

在我的 xml 文件夹中的 appwidget 文件中。

<?xml version="1.0" encoding="utf-8"?>
<appwidget-provider
xmlns:android="http://schemas.android.com/apk/res/android"
android:minHeight="40dp"
android:minWidth="40dp"
android:updatePeriodMillis="0"
android:initialLayout="@layout/widget_layout"

>
</appwidget-provider>

下面是我的 widget_layout 文件。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="40dp"
android:layout_height="40dp"
android:gravity="center"
android:orientation="horizontal"
>
<Button
android:id="@+id/widget_ibtn_onoff"
android:layout_width="0dp"
android:layout_height="fill_parent"
android:background="@drawable/widget"
android:layout_weight="1"
/>

</LinearLayout>

drawable widget 大小如下。

drawable-hdpi - 60px
drawable-ldpi - 30px
drawable-mdpi - 40px
drawable-xhdpi - 80px

在我的 galaxy nexus 中,屏幕截图如下所示。 enter image description here

谢谢吉里什

最佳答案

试试这个布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="horizontal">

<Button
android:id="@+id/widget_ibtn_onoff"
android:layout_width="40dp"
android:layout_height="40dp"
android:background="@drawable/widget" />

</LinearLayout>

关于android - 小部件在主屏幕中拉伸(stretch)。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16806188/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com