Hello,

You need to extend a class from *BroadcastReceiver* and then add it to
a reciever tag in your AndroidManifest.xml

public class SMSReceiver extends BroadcastReceiver{...}

<receiver android:name=".SMSReceiver">
        <intent-filter>
                <action
android:name="android.provider.Telephony.SMS_RECEIVED"/>
        </intent-filter>
</receiver>

And then instead of making a toast or a notification, you should
launch your activity (which must have transparent style background).

regards,

Lucas

On Jul 28, 6:08 am, Desu Vinod Kumar <[email protected]> wrote:
> HI
> exactly i need to show like this........
>
>
>
> On Tue, Jul 28, 2009 at 1:14 PM, Romain Guy <[email protected]> wrote:
>
> > You cannot do this.
>
> > On Tue, Jul 28, 2009 at 12:44 AM, android.vinny<[email protected]>
> > wrote:
>
> > > HI
>
> > > how can i access the Home screen .....i need to show the gif animation
> > > there how can i show that gif image there
> > > how can i do it .....
>
> > > thanks a lot in advance.....
>
> > --
> > Romain Guy
> > Android framework engineer
> > [email protected]
>
> > Note: please don't send private questions to me, as I don't have time
> > to provide private support.  All such questions should be posted on
> > public forums, where I and others can see and answer them
>
> --
> Regards
> -------------------
> Desu Vinod Kumar
> [email protected]
> 09176147148
>
>  emo.PNG
> 186KViewDownload
--~--~---------~--~----~------------~-------~--~----~
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