after i checked the dialer mainfest file in cupcake
i got it.


<intent-filter>
                <action android:name="android.intent.action.VIEW" />
                <action android:name="android.intent.action.DIAL" />
                <category
android:name="android.intent.category.DEFAULT" />
                <category
android:name="android.intent.category.BROWSABLE" />
                <data android:scheme="tel" />
</intent-filter>



On Feb 21, 11:50 pm, "[email protected]" <[email protected]> wrote:
> hi~
> I want to launch my own app when number keys are pressed ...
>
> after reading the post online,it seems to be the following code would
> solve such issue
>
> <intent-filter>
>
>                 <action android:name="android.intent.action.MAIN" />
>                 <action android:name="android.intent.action.DIAL" />
>                 <category
> android:name="android.intent.category.DEFAULT" />
>                 <category
> android:name="android.intent.category.LAUNCHER" />
>
> </intent-filter>
>
> But it doesn't work?
>
> what's the problem?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to