To give some background:
Right now, I do not have a default set for my Search Long Press, so I
get the standard "Complete action using" dialog, listing a few
different apps, "Handcent Quick Compose" being one of them.
What I am attempting to do, is to recreate this dialog with a Tasker,
taking out some unnecessary actions, and adding a few of my own.
I looked through Handcent's manifest.xml and found this:
<activity android:theme="@android:style/Theme.Dialog"
android:label="@string/menu_item_handcent_quick_compose"
android:name="com.handcent.sms.ui.HcQuickComposeActivity"
android:taskAffinity="com.handcent.sms.quickcompose"
android:launchMode="singleInstance" android:configChanges="locale|
keyboardHidden|orientation" android:windowSoftInputMode="stateHidden|
adjustPan">
<intent-filter>
<action
android:name="android.intent.action.SEARCH_LONG_PRESS" />
<category android:name="android.intent.category.DEFAULT" /
>
</intent-filter>
</activity>
It seems that there's no special intent to call the activity (unlike
the example in the "How to Launch an Activity like Launcher Pro"
thread). While I am able to make a Action Intent task that emulates a
Search Long Press (in return bringing up the aforementioned dialog),
I'm still stumped as far as bringing up the Quick Compose app.