I have found several examples of Android apps that have simple widgets that are droppable into home screen folders and the bottom, persistent row on the home screen. For instance, the Gmail label widget, or the Dropbox folder widget. In my attempts to make a similar widget - single cell with icon and text view underneath - the widget can only be by itself on the home screen.
How can I make the most simple widget that can be dropped into a home screen folder or home row just like a normal app icon?
Is it possible what I'm looking for is actually not a widget, but an app icon that would somehow be included in the widget list (but without adding a second app icon in the app list)?
EDIT:
Huge thanks to Kuffs for getting me in the right direction.
The key to this is in what Kuffs points to in the manifest:
...
<intent-filter>
<action android:name="android.intent.action.CREATE_SHORTCUT" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
...
As Kuffs mentions, that alone gets your app an entry in the widget list. Good work team.