Note that there are some explanatory texts on larger screens.

plurals
  1. POAndroid: Widgets not showing in app drawer ICS
    primarykey
    data
    text
    <p>I have two widgets and neither of them will show up in the app drawer. What's weird is that if I remove one from the manifest it won't show up either but I can't see what I am doing wrong. From all the other questions I searched it looks right. The app is not being installed on the SD card.</p> <p>Anyone have any ideas? </p> <p><strong>AndroidManifest.xml</strong></p> <pre><code>&lt;receiver android:name=".appwidgets.WidgetLarge" android:label="@string/Widget_large" android:icon="@drawable/icon" &gt; &lt;intent-filter&gt; &lt;action android:name="android.appwidget.action.APPWIDGET_UPDATE" /&gt; &lt;/intent-filter&gt; &lt;intent-filter&gt; &lt;action android:name="com.groggs.action.CACHE_UPDATE_FINISHED" /&gt; &lt;/intent-filter&gt; &lt;intent-filter&gt; &lt;action android:name="WIDGET_UPDATE" /&gt; &lt;data android:scheme="content" /&gt; &lt;/intent-filter&gt; &lt;meta-data android:name="android.appwidget.provider" android:resource="@xml/widget_large_info" /&gt; &lt;/receiver&gt; &lt;receiver android:name=".appwidgets.WidgetSmall" android:label="@string/Widget_small" android:icon="@drawable/icon" &gt; &lt;intent-filter&gt; &lt;action android:name="android.appwidget.action.APPWIDGET_UPDATE" /&gt; &lt;/intent-filter&gt; &lt;intent-filter&gt; &lt;action android:name="com.groggs.action.CACHE_UPDATE_FINISHED" /&gt; &lt;/intent-filter&gt; &lt;intent-filter&gt; &lt;action android:name="WIDGET_UPDATE" /&gt; &lt;data android:scheme="content" /&gt; &lt;/intent-filter&gt; &lt;meta-data android:name="android.appwidget.provider" android:resource="@xml/widget_small_info" /&gt; &lt;/receiver&gt; </code></pre> <p><strong>widget_large_info.xml</strong></p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android" android:maxWidth="450dp" android:maxHeight="352dp" android:updatePeriodMillis="0" android:initialLayout="@layout/widget_layout_large" android:configure="com.groggs.appwidgets.config.HubQuickViewWidgetConfig" &gt; &lt;/appwidget-provider&gt; </code></pre> <p><strong>widget_small_info.xml</strong></p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android" android:maxWidth="450dp" android:maxHeight="82dp" android:updatePeriodMillis="0" android:initialLayout="@layout/widget_layout_small" android:configure="com.groggs.appwidgets.config.HubQuickViewWidgetConfig" &gt; &lt;/appwidget-provider&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload