Re: [android-beginners] how can i write a Broadcast Receiver that will be invoked when user clicks on any application icon.

2010-03-22 Thread Agus
If you don't want to display the activity, just use the Theme.NoDisplay
theme on your activity.

On Thu, Mar 18, 2010 at 7:59 AM, mike kiranbollepa...@gmail.com wrote:

 hai every one,

 i have a query.
 how can i write a Broadcast Receiver that will be invoked when user
 clicks on any application icon.

 i tried by writing
 receiver android:name = myreceiver
 intent-filter
 action android:name = android.intent.action.MAIN
 /intent-filter
 /receiver
 but it is not called.


 i tried,
 by using Packagemanager i will get ApplicationInfo from that i can
 know all the application starting activity name and package names. i
 thought i can use them to registerReceiver
 and my receiver will listen by its launching activity and package
 name.
 but i strucked.. i am unable to do that.. i think i lost the way..
 please guide me...

 --
 You received this message because you are subscribed to the Google
 Groups Android Beginners group.

 NEW! Try asking and tagging your question on Stack Overflow at
 http://stackoverflow.com/questions/tagged/android

 To unsubscribe from this group, send email to
 android-beginners+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-beginners?hl=en

 To unsubscribe from this group, send email to android-beginners+
 unsubscribegooglegroups.com or reply to this email with the words REMOVE
 ME as the subject.


-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en

To unsubscribe from this group, send email to 
android-beginners+unsubscribegooglegroups.com or reply to this email with the 
words REMOVE ME as the subject.


Re: [android-beginners] Not sure why my app installs twice (I see two identical ICON's).

2009-12-25 Thread Agus
check your intent filters

On Fri, Dec 25, 2009 at 7:44 AM, cellurl gpscru...@gmail.com wrote:

 When I run my app in the emulator, I see the ICON in the list of
 programs twice instead of just once like it should be.
 FYI, This app originated as a copy of an old app, and also, I recently
 switched from 1.5 to 2.1, so perhaps thats involved.

 e.g. In the emulator, I see my apps ICON twice.

 I must have two entries in the manifests or two identical-ish classes
 or something dumb like that??

 Any help appreciated.
 I can post the code if needed.

 Merry Christmas,
 jim, wikispeedia.org



 --
 You received this message because you are subscribed to the Google
 Groups Android Beginners group.

 NEW! Try asking and tagging your question on Stack Overflow at
 http://stackoverflow.com/questions/tagged/android

 To unsubscribe from this group, send email to
 android-beginners+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-beginners?hl=en


-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Is that compulsory to use Java developing android apps????

2009-11-02 Thread Agus
you can use Scala

On Thu, Oct 29, 2009 at 11:22 PM, defyer yn.johnson...@gmail.com wrote:

 Hi, there!
 I'm fresh to Android development and am a C/C++ programmer hence not
 quite familiar with Java things
 so, is that requested to use Java here under Android system?
 thanks!!!

 Johnson

 --
 You received this message because you are subscribed to the Google
 Groups Android Beginners group.
 To post to this group, send email to android-beginners@googlegroups.com
 To unsubscribe from this group, send email to
 android-beginners+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-beginners?hl=en

-- 
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en

[android-beginners] Re: connecting to a remote database tutorial/example?

2009-10-24 Thread Agus
I have never tried connecting to a hosted DB within android app.
maybe you should consider using a webservice either SOAP or  RESTful.


On Sat, Oct 24, 2009 at 11:21 AM, gmseed gms...@gmail.com wrote:


 Hi

 I'm developing an application to connect to a database on my website.

 Does anyone know of a link to an example/tutorial in which this kind
 of operation is performed?

 Thanks

 Graham
 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Re: wait for an animation to end before continuing the program

2009-10-20 Thread Agus
use animationlistener

On Mon, Oct 19, 2009 at 11:57 PM, jax jackma...@gmail.com wrote:


 I need to wait for an animation to end before continuing the program.
 How would I do that?

 I noticed that I can get a hanndle on hasEnded() but if I run this is
 a do while loop the application will halt.
 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Re: Android Getting started

2009-10-20 Thread Agus
package is like the base namespace of your app

On Sun, Oct 18, 2009 at 5:35 AM, Niamathullah sharief
android...@gmail.comwrote:

 Hi i am new to android. I am having some doubt when i tried to do my first
 project in android. When i select new new project in eclipse. Is ask some
 details. In that i saw one option called package name..I don't know what
 to give in that field. Can anyone help me. I am not much expert in Java.
 Thank you

 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---