[android-beginners] Receiving text from a remote source and pasting into the current application

2009-08-28 Thread roschler
I know how to get text from a server with my Android phone. I want to write a utility that can grab text from a server that I'll be running and then paste that text into the current application running in the foreground on the user's phone. What is the general procedure for doing this on

[android-beginners] Triggering options list

2009-08-28 Thread gandor
Dear Friends, I want to trigger the options list in Android phone when somebody calls my cell number ie to say different kinds of options we hear when we call t-mobile customer service. Press 1 to pay bill Press 2 for Representative Press 3 for Exit etc etc Based on these options I need to

[android-beginners] Configure my Account without G1

2009-08-28 Thread Jose Ayerdis
Is there any way to configure my account at start of my HTC Dream G1 without having G3 i do have wireless but seems odd does not detec it and i cant access the settings to configure it ... any ideas ? thank you -- Atte [[Jose Luis Ayerdis Espinoza]] http://blognecronet.blogspot.com

[android-beginners] Re: Why My application could play http but not rtsp?

2009-08-28 Thread Croccy22
I think you'll find rtps is the Real Time Streaming format and therefore you need to have RealPlayer installed to listen to these feeds on a pc. Since there is no RealPlayer for the Android and I don't believe that Android supports playback of Real Player files then I expect this is why you are

[android-beginners] Re: Receiving text from a remote source and pasting into the current application

2009-08-28 Thread Mark Murphy
My concern is that the user should be able to paste the text into any program he runs on Android. This is not possible for security reasons, as you suggest later in your message. You can offer this feature for your own applications, or make a JAR or remote service available that other

[android-beginners] Re: Triggering options list

2009-08-28 Thread Mark Murphy
I want to trigger the options list in Android phone when somebody calls my cell number ie to say different kinds of options we hear when we call t-mobile customer service. Press 1 to pay bill Press 2 for Representative Press 3 for Exit etc etc Based on these options I need to

[android-beginners] Re: problem with service

2009-08-28 Thread Lutz Schönemann
A service is not running in it's own thread by default. It uses the main thread (same thread as your activity). It is a little confusing if you look at the lifecycles of a service and an activity so you might think that it is running in the background by default. What you should do is

[android-beginners] LocationManager.getLastKnownLocation(gps) returns null instead of location object

2009-08-28 Thread gganesh
hi, locationmanger = (LocationManager)getSystemService (Context.LOCATION_SERVICE); location =locationmanager.getLastKnownLocation(gps); Log.v(TAG,location obj+location); The Log shows null instead of location object I am using emulator to test my code ,I have written appropriate permissions,i

[android-beginners] Can't acces my own service.

2009-08-28 Thread Lutz Schönemann
Hi, my current problem is to access my own service. The thing is I have 2 interfaces for my service and want to restrict one of them to applications that have a special permission. I have a service and an activity in one package. The application has that special permission but I always

[android-beginners] Re: LocationManager.getLastKnownLocation(gps) returns null instead of location object

2009-08-28 Thread Mark Murphy
locationmanger = (LocationManager)getSystemService (Context.LOCATION_SERVICE); location =locationmanager.getLastKnownLocation(gps); Log.v(TAG,location obj+location); The Log shows null instead of location object Correct. I am using emulator to test my code ,I have written appropriate

[android-beginners] Re: How to send email?

2009-08-28 Thread Desu Vinod Kumar
U can find the source in email client example.. On Fri, Aug 28, 2009 at 5:24 PM, kapil.k kapnk...@gmail.com wrote: Is there any sample code about how to send email in android?i want to design email application for fix address by modifying it. -- Regards --- Desu

[android-beginners] How to send email?

2009-08-28 Thread kapil.k
Is there any sample code about how to send email in android?i want to design email application for fix address by modifying it. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Beginners group. To post to this

[android-beginners] zip files in resources

2009-08-28 Thread Jeffrey Blattman
i need to place a zip file in my resources (it is about 400k). i understand i can get a handle to the stream, to load the zip via ZipInputStream from that location, but in order to be memory conscious i really need to get a handle to a ZipFile. what are my options? i understand i can read the

[android-beginners]

2009-08-28 Thread saurabh sinha
does any one tell me can we make MMS application in android --~--~-~--~~~---~--~~ 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

[android-beginners] Re: zip files in resources

2009-08-28 Thread Mark Murphy
i need to place a zip file in my resources (it is about 400k). i understand i can get a handle to the stream, to load the zip via ZipInputStream from that location, but in order to be memory conscious i really need to get a handle to a ZipFile. what are my options? i understand i can read

[android-beginners]

2009-08-28 Thread saurabh sinha
Hello I am android beginner am looking for near by hotel in mapview application in android does any one have this application --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Beginners group. To post to this

[android-beginners] Open GL Programming for a Starter on Android

2009-08-28 Thread Maxood
I am interested to develop android applications in Open GL. I have come across with the following web page on Open GL apps written in C language: http://www.opengl.org/resources/code/samples/redbook/ Wonder if someone can guide me to convert them into Java so that they can run on android. Also

[android-beginners] Re: How to send email?

2009-08-28 Thread Liviu Ungureanu
2009/8/28 Desu Vinod Kumar vinny.s...@gmail.com U can find the source in email client example.. On Fri, Aug 28, 2009 at 5:24 PM, kapil.k kapnk...@gmail.com wrote: Is there any sample code about how to send email in android?i want to design email application for fix address by modifying

[android-beginners] Re: problem with service

2009-08-28 Thread Teal
Thanks for the useful explanation, Lutz. This might be a newbie question, but if you're spawning a new thread anyway, why run it in a Service? Why not just spawn from Activity? Thanks. On Aug 28, 6:25 am, Lutz Schönemann lutz.schoenem...@sit.fraunhofer.de wrote: A service is not running in

[android-beginners] Re: ListView item stay selected

2009-08-28 Thread Martin Obreshkov
Thanks a lot it's really very simple and clear using ContextMenu On Fri, Aug 28, 2009 at 1:14 AM, Justin Andersonjanderson@gmail.com wrote: The preferred way is to use a long-press to bring up a context menu.  The menu populated by pressing the menu button should be used for things that do

[android-beginners] Re: zip files in resources

2009-08-28 Thread Jeffrey Blattman
right, my mistake. i can achieve the same thing by sticking the contents in assets and reading the data from there. thanks. On 8/28/09 6:23 AM, Mark Murphy wrote: i need to place a zip file in my resources (it is about 400k). i understand i can get a handle to the stream, to

[android-beginners] Re: Source not found

2009-08-28 Thread Yusuf Saib (T-Mobile USA)
You may need to add the Tag activity to your AndroidManifest.xml file. Yusuf Saib Android ·T· · ·Mobile· stick together The views, opinions and statements in this email are those of the author solely in their individual capacity, and do not necessarily represent those of T-Mobile USA, Inc.

[android-beginners] Re: Source not found

2009-08-28 Thread tinyang
Thanks Yusuf for your reply! I do actually have the Tag activity in the manifest, the manifest snipit I posted had a typo (thanks for catching that). What else may cause such a problem? -Original Message- From: android-beginners@googlegroups.com

[android-beginners] Re: Publishing Updates for my application

2009-08-28 Thread Georgy
So I will just publish my application as a new application but having the same key, apk, etc and the market will have it automatically as an update for the users who already own it and as an updated app for those who don't have it? thanks On Aug 27, 3:31 pm, Carmen Delessio

[android-beginners] Load a YouTube video via intent - how?

2009-08-28 Thread Jason Van Anden
I would like to load a video via an intent using the YouTube player. Can someone point me in the direction to find an example? Thank You, Jason --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Beginners

[android-beginners] Re: Open GL Programming for a Starter on Android

2009-08-28 Thread Aki
Hi Maxood not complete but almost i've converted. check here. http://code.google.com/p/akjava-android-project/ but these coder is for android 1.1 aki On 8月28日, 午後10:38, Maxood maqs...@salsoft.net wrote: I am interested to develop android applications in Open GL. I have come across with the

[android-beginners] Re: Load a YouTube video via intent - how?

2009-08-28 Thread Jason Van Anden
More specifically ... I know that this is the way to broadcast: Uri uri=Uri.parse(http://www.youtube.com/watch?v=Enu-BbWCtT4;); startActivity(new Intent(Intent.ACTION_VIEW, uri)); Thing is, this gives me a choice between YouTube

[android-beginners]

2009-08-28 Thread saurabh sinha
hello I am looking for news RSS application in android if u have plz send me --~--~-~--~~~---~--~~ 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] Re: Configure my Account without G1

2009-08-28 Thread Roman ( T-Mobile USA)
You should be able to connect to 2G or 3G. If this does not work at all I recommend to go to a T-Mobile store to get your phone checked. If you are living in an area with bad T-Mobile 3G coverage, also let T- Mobile know. They will try to improve 3G coverage. -- Roman Baumgaertner Sr. SW

[android-beginners] Re: Install app on a device?

2009-08-28 Thread Yasser
Thanks a lot Carmen and Michael. I am not able to find this app, there is no download link on this: http://androidandme.com/2009/08/news/email-android-apps-with-apkatcher/ On Aug 25, 7:10 pm, Michael Leung michaelchi...@gmail.com wrote: That is good, AppsInstall is only from SD card.

[android-beginners] Re: Problem with Ecplise android plugin install

2009-08-28 Thread yodaa
Hello, I've uninstalled the repository version of Eclipse and get installed the Eclipse IDE for Java EE Developers version from official website: http://www.eclipse.org/downloads/ I've set up the Android Plugin using Software Updates, installation dependencies were installed. Plus I've set

[android-beginners] Emulator resolution

2009-08-28 Thread Steeler
I assume the emulator has the same aspect ratio and number of pixels as the G1? --~--~-~--~~~---~--~~ 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] Forced G1 Dev Phone reboot?

2009-08-28 Thread Kent Loobey
Is there a way to force a G1 Phone to reboot? If so how. --~--~-~--~~~---~--~~ 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

[android-beginners] Re: Forced G1 Dev Phone reboot?

2009-08-28 Thread Roman ( T-Mobile USA)
You can write a system application which uses the intent ACTION_REBOOT. -- Roman Baumgaertner Sr. SW Engineer-OSDC ·T· · ·Mobile· stick together The views, opinions and statements in this email are those of the author solely in their individual capacity, and do not necessarily represent those of

[android-beginners] Re: Emulator resolution

2009-08-28 Thread Jeffrey Blattman
the emulator can run at a variety of resolutions. i think the default is 320x480 which is the same as the G1. i also believe that's the smallest resolution available on any planned or actual android phone. emulator -skinwidthxheight On 8/28/09 3:26 PM, Steeler wrote: I assume the

[android-beginners] Special dating

2009-08-28 Thread Estrella Roja
This is a personal dating and matchmaking service for singles looking for a partner to share love, romance, friendship and relationships. Find a date and spice up your life! http://getiton.maxurl-go.info --~--~-~--~~~---~--~~ You received this message because you