无法添加到Android应用程序小部件布局

无法添加到Android应用程序小部件布局,第1张

概述我正在尝试为应用程序创建一个小部件,以下是我正在使用的布局.我试图将滚动视图添加到小部件的后半部分.我无法做到这一点,当我删除标签时,小部件正在显示,但是当使用标签时, android无法加载小部件.我这两天都在摸不着头脑.我不明白我做错了什么? <?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http 我正在尝试为应用程序创建一个小部件,以下是我正在使用的布局.我试图将滚动视图添加到小部件的后半部分.我无法做到这一点,当我删除标签时,小部件正在显示,但是当使用标签时,android无法加载小部件.我这两天都在摸不着头脑.我不明白我做错了什么?
<?xml version="1.0" enCoding="utf-8"?><linearLayout    xmlns:androID="http://schemas.androID.com/apk/res/androID"    androID:orIEntation="vertical"    androID:layout_wIDth="fill_parent"    androID:layout_height="fill_parent"    androID:background="@androID:color/background_light"    >        <relativeLayout             xmlns:androID="http://schemas.androID.com/apk/res/androID"            androID:layout_wIDth="fill_parent"            androID:layout_height="wrap_content"            androID:background="@androID:color/background_dark"            androID:ID="@+ID/Widgetheader"            >            <button               androID:background="@drawable/icon_quickword"              androID:ID="@+ID/WidgetBtn"              androID:layout_wIDth="wrap_content"               androID:layout_height="wrap_content"               androID:layout_gravity="center_vertical"              androID:layout_margin="5sp"              />            <TextVIEw androID:text="@string/Widget_Title1"              androID:ID="@+ID/Widget_Title1"               androID:textSize="18sp"                 androID:textStyle="bold"              androID:layout_wIDth="fill_parent"              androID:layout_height="wrap_content"              androID:layout_gravity="center_vertical"              androID:textcolor="@androID:color/white"              androID:layout_toRightOf="@ID/WidgetBtn"              androID:layout_marginleft="2sp"              />            <TextVIEw androID:text="@string/Widget_Title2"              androID:ID="@+ID/Widget_Title2"               androID:textSize="15sp"                 androID:textStyle="italic"              androID:layout_wIDth="fill_parent"              androID:layout_height="wrap_content"              androID:layout_gravity="center_vertical"              androID:textcolor="@androID:color/white"              androID:layout_toRightOf="@ID/WidgetBtn"              androID:layout_below="@ID/Widget_Title1"              androID:layout_marginleft="3sp"              />        </relativeLayout>               <ScrollVIEw            androID:layout_wIDth="fill_parent"            androID:layout_height="fill_parent"             >            <linearLayout                androID:ID="@+ID/WidgetContent"                androID:layout_wIDth="fill_parent"                androID:layout_height="wrap_content"                androID:orIEntation="vertical"                androID:background="@androID:color/white"                >                <TextVIEw androID:text="@string/Widget_content_info1"                  androID:ID="@+ID/Widget_content_info1"                  androID:textStyle="bold"                   androID:textSize="16sp"                  androID:layout_wIDth="wrap_content"                  androID:layout_height="wrap_content"                  androID:layout_gravity="center_vertical"                  androID:textcolor="@androID:color/black" />                <TextVIEw androID:text="@string/Widget_content_info2"                  androID:ID="@+ID/Widget_content_info2"                  androID:textSize="14sp"                   androID:layout_wIDth="wrap_content"                  androID:layout_height="wrap_content"                  androID:layout_gravity="center_vertical"                  androID:textcolor="@androID:color/black" />                   <TextVIEw androID:text="@string/Widget_content_info3"                  androID:ID="@+ID/Widget_content_info3"                  androID:textSize="14sp"                   androID:layout_wIDth="wrap_content"                  androID:layout_height="wrap_content"                  androID:layout_gravity="center_vertical"                  androID:textcolor="@androID:color/black" />               </linearLayout>        </ScrollVIEw></linearLayout>
解决方法 我认为AndroID App-Widget不支持scrollvIEw(主屏幕中的小部件,如果这就是你的意思!).支持的视图列表为 here 总结

以上是内存溢出为你收集整理的无法添加到Android应用程序小部件布局全部内容,希望文章能够帮你解决无法添加到Android应用程序小部件布局所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1145235.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-31
下一篇 2022-05-31

发表评论

登录后才能评论

评论列表(0条)

保存