[android-beginners] I am trying to log my gps location to a website.

2009-08-18 Thread cellurl
I am trying to log my gps location to a website. This code runs, but I don't see any activity in my website log, so anything could be wrong The Log.d() looks good... Thanks for any suggestions. -jp ---http://www.wikispeedia.org/a/ process_submit_bb.php--

[android-beginners] android handset in India

2009-08-18 Thread kapil.k
hello all I am from india.does anybody have idea from where can get android device? I think huge diff in price.does any body useing it or have we any option of importing unlocked devices? --~--~-~--~~~---~--~~ You received this message because you are subscribed to

[android-beginners] Re: How to get started with Android programming from scratch? Is it worthwhile to buy a HTC Magic?

2009-08-18 Thread Jens Vegeby
It can be used for development, I use mine for that purpuse. You just have to enable USB debuging under settings, and enable installation from other sources than market. Regards Jens On 8 17, 2009 7:24 PM, bianconeri alex.tao.c...@gmail.com wrote: Hi all, I've just downloaded Android SDK 1.5

[android-beginners] Could not find anim resource

2009-08-18 Thread 陈增顺
Hi, I met a strange problem. When I add a layout animation for a gridview by Android Layout Editor in Eclipse, the editor show the following Error Message: *NotFoundException: Could not find anim resource matching value 0x7F04 (resolved name: main_wave_scale) in current configuration.* But

[android-beginners] Re: 3 icons for one app

2009-08-18 Thread Sean Hodges
Can you post up your manifest file? On Tue, Aug 18, 2009 at 2:41 AM, tinyangtiny...@earthlink.net wrote: I am developing an app and so far it has 3 complete acticities.  For some reason, everytime I install it and run it in my emulator, it creates an icon for each activity instead of

[android-beginners] Re: help needed creating a AVD

2009-08-18 Thread Jens Vegeby
You need to include the java bin directory in your system path, contrpl panel, system, advanced system settings, some tab, environment variables. Regards Jens On 8 18, 2009 4:16 AM, Roman ( T-Mobile USA) roman.baumgaert...@t-mobile.com wrote: Try to do a java -version to see whether you have

[android-beginners] Help with Activites

2009-08-18 Thread Neilz
Where do all the activities go? What I mean is... My app contains a list. When I click on an item, I fire up a new activity. Potentially I could do the same again, and again. Are all these activities still running? If so, how can I switch between them, or view a list of which activities are

[android-beginners] multiple image attachments

2009-08-18 Thread SrilankanKK
Hi all I'm try to send an email with multiple image attachments.I'm trying to develop an application which has a button and when i click the button mail has to be sent with image attachments. email address is hard coded. If any body knows a solution plz reply me.

[android-beginners] Re: Extremely LONG Emulator load time on Eclipse Galileo and Vista

2009-08-18 Thread Nox
Hi, I've had the same problem with Vista. If you tap to run conficurations and to Android and after it to run, the Eclipse-console will display what it does. If you are running the emulator the first time it could spend up to 10 minutes. On Aug 17, 7:44 am, bianconeri alex.tao.c...@gmail.com

[android-beginners] Re: Help with Activites

2009-08-18 Thread Jose Ayerdis
2009/8/18 Neilz neilhorn...@googlemail.com Where do all the activities go? What I mean is... My app contains a list. When I click on an item, I fire up a new activity. Potentially I could do the same again, and again. Are all these activities still running? If so, how can I switch between

[android-beginners] GPS Question Coord

2009-08-18 Thread Jose Ayerdis
Hello, i was wondering if you could help me with this question: Is there a way to load default GPS value on my ADV or i have to resend it every time with Emulator Control?? -- Atte [[Jose Luis Ayerdis Espinoza]] http://blognecronet.blogspot.com

[android-beginners] Re: Linking with a custom View class

2009-08-18 Thread Mark Murphy
Shachar Shemesh wrote: I think I understand why the confusion. I believe you are talking about statically linking, while I'm talking about dynamically linking. I am talking about what is possible at the SDK level, which is presumably what you want, since you are on the beginners' list. My

[android-beginners] buttons in listview

2009-08-18 Thread Martin Obreshkov
I have a ListActivity and in each listview item i have textview and a button, when i select an item from the text view the button become visible ( by default it is GONE ) so far so good :). But when the button become visible i can't the select the same item again, the onListItemClick method is

[android-beginners]

2009-08-18 Thread saurabh sinha
I not able to fine example of find restaurent in mapview does any body hve this example --~--~-~--~~~---~--~~ 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] getting color array of image

2009-08-18 Thread eldo
I want to create bitmap from ImageView. Will you guide me. Now i am creating bitmap for Images from res/drawable by using Bitmap mBitmap = BitmapFactory.decodeResource(getResources(), R.drawable.pic1); then I am getting color array for this bitmap by using mBitmap.getPixels(pix, 0, picw, 0, 0,

[android-beginners] getting color array of image

2009-08-18 Thread eldo
I want to create bitmap from ImageView. Will you guide me. Now i am creating bitmap for Images from res/drawable by using Bitmap mBitmap = BitmapFactory.decodeResource(getResources(), R.drawable.pic1); then I am getting color array for this bitmap by using Hi , mBitmap.getPixels(pix, 0, picw,

[android-beginners] Re: 3 icons for one app

2009-08-18 Thread tinyang
Sure. Here is my manifest file: ?xml version=1.0 encoding=utf-8? manifest xmlns:android=http://schemas.android.com/apk/res/android; package=net.tinyang.birdtracker android:versionCode=1 android:versionName=1.0 uses-permission android:name=android.permission.INTERNET /

[android-beginners] Re: 3 icons for one app

2009-08-18 Thread Liviu Ungureanu
Hi! Just remove the intent filter for the others activities less main activity. use it only for main activity Thank you! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Beginners group. To post to this group,

[android-beginners] Re: How to get started with Android programming from scratch? Is it worthwhile to buy a HTC Magic?

2009-08-18 Thread chinchin
Hi, I haven't even picked up an android handset yet and have just been using the emulator. However I've seen several threads already from people that have asked the question about how to install their apk file (the compiled installer code) onto the actual phone. Also my friend, even downloaded

[android-beginners] Re: Linking with a custom View class

2009-08-18 Thread Shachar Shemesh
Mark Murphy wrote: I am talking about what is possible at the SDK level, which is presumably what you want, since you are on the beginners' list. Yes. It was only after I found the answer that I found out that the beginners list was the wrong one :-) Your solution would link the

[android-beginners] Re: Linking with a custom View class

2009-08-18 Thread Mark Murphy
Shachar Shemesh wrote: As a long time Linux programmer, your definition of user land is vastly different than mine. Yeah, sorry about that. I do agree that what I want done (have done, in fact) requires changing files on /system file system, and therefor count as platform development.

[android-beginners] Problem with Buttons in Listview

2009-08-18 Thread manigault
I have a ListActivity and in each listview row has a textview and a button, when i select an item from the listview the button become visible ( by default it is GONE ) so far so good :). When the button become visible i can't select the same row again, the onListItemClick method is not invoked

[android-beginners] The application XXXX(process com.example.XXXX) has stopped unexpectedly

2009-08-18 Thread eldo
Hi all, I have a problem when my application runs on the emulator . while trying to run the application it throws a message The application (process com.example.) has stopped unexpectedly .I do not get the output on screen . Could you give me pointers as to why this occurs .

[android-beginners] Re: Custom spinner widget

2009-08-18 Thread midtoad
What is it you are trying to accomplish? Select an item from a spinner widget? If so, take a look at the Spinner Demo example from commonsware.com (source code from Hello, Android). On Aug 14, 11:23 am, tinyang tiny...@earthlink.net wrote: I read in another post that the spinner widget does

[android-beginners] How to include multiple spinners in one Activity?

2009-08-18 Thread midtoad
I'm stuck on how to include multiple spinners in one Activity screen, and wonder if you might have any suggestions. i.e. how would I modify the following Spinner Demo example to add another spinner? Thanks. public class SpinnerDemo extends Activity implements

[android-beginners] Re: The application XXXX(process com.example.XXXX) has stopped unexpectedly

2009-08-18 Thread Balwinder Kaur (T-Mobile USA)
Please check your logcat output. It would give you the pointers. Balwinder Kaur Open Source Development Center ·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: 3 icons for one app

2009-08-18 Thread tinyang
If I do that, I can't get to those activities. I have a main menu screen with a button for each activity, and the buttons don't work for any activity in which I remove the intent for from the manifest. If I remove those intents from the manifest, how else can I make the buttons open my

[android-beginners] Re: Custom spinner widget

2009-08-18 Thread tinyang
Thanks for the reply! I was able to get this working using onItemSelected(). -Original Message- From: android-beginners@googlegroups.com [mailto:android-beginn...@googlegroups.com] On Behalf Of midtoad Sent: Tuesday, August 18, 2009 9:58 AM To: Android Beginners Subject:

[android-beginners] Re: Help with Activites

2009-08-18 Thread Justin Anderson
You can use the ActivityManager class to get a list of activities that are considered to be running by Android. In actuality they are paused, since you can only have one running activity at a time. You can also get a list of running processes via the ActivityManager class. Unlike activities,

[android-beginners] Debugging Apps with Google APIs Target on Android Dev Phone

2009-08-18 Thread Persona
Hello, I am writing a program that uses Google APIs for location and maps. I am trying to use the device for debugging and as a Location Provider. The program is simple- turn on the GPS, get the location, display it on the screen/map/etc. The GPS is turned on, but no location information is

[android-beginners] How can i view Thai language in MyTouch 3g

2009-08-18 Thread h
I would like to use MyTouch to suf Thai web site but it can not display Thai character. Have anyone can help. Thankyou --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Beginners group. To post to this group,

[android-beginners] Connection timeout problem in browser with DWR application

2009-08-18 Thread max
Hello everyone, I already posted this on stackoverflow.com (http://stackoverflow.com/ questions/1271345/problem-with-dwr-and-android-browser) but noone could point me in the right direction. So I will just cite what I posted previously on stackoverflow: blockquotepI am experiencing a problem

[android-beginners] HTC Dream Composite ADB Interface Driver Install Fails: Access is denied.

2009-08-18 Thread Eddie
I just got a MyTouch. Trying to install the ADB driver on my Vista, 32- bit. The driver does not install, and this is the message from Vista: Windows found driver software for your device but encountered an error while attempting to install it. HTC Dream Composite ADB Interface. Access is

[android-beginners] Delete Note does not work in the Notepadv2 example

2009-08-18 Thread Belik77
Hi all, I am new to android developing. I am very pleased with the tutorials that google add to the developer site. it is very clear and easy to learn. I am now going trough the Notepad Tutorial and I have problem with the second exercise. Notepadv2. after i have done all the steps, and run

[android-beginners] pins on google maps

2009-08-18 Thread Klaas Roobroeck
Does somebody know how i can get the pins on my map when i do a search like this Uri uri = Uri.parse(geo:0,0?restaurant); Intent intent = new Intent(getBaseContext,uri); startActivity(intent); Then the place who are a bar are showing up on a red balloon on my mapview. The point is that i want

[android-beginners] Calender APIs for Android

2009-08-18 Thread sreemon
Hello Friends, I am thinking of building a android application, and it happen to be on the Calender. When i googled, the topic, i fail to get a valid pick from any of the links. I would like to know, Is there any APIs available in Android so that i can call it for my purpose? Is ther any

[android-beginners] using pre-coded functionality

2009-08-18 Thread cyclopse
Hello all, Google is stating that code of other installed applications can be used in your own application. I would like to incorporate some functionality of the Phone-app into my own application, but have no idea where to start (couldnt find anything useful in the SDK docs). Can you guys give

[android-beginners] Plugin

2009-08-18 Thread Bishesh Manandhar
Is it possible to download the android plugin without using eclipse i need to shift eclipse to another computer.. but there is no access to internet.. is it possible to download the android pluginsss... is it possible by shifting some jar filess... PLZZ HELPPP

[android-beginners] Listen to Camera Events

2009-08-18 Thread vivasvan
Hi, Is there any way to listen to camera Events as triggered by native/ other apps on Android ? e.g. I need to access the image captured / video capture start/end times and the media etc. Thanks, Viv --~--~-~--~~~---~--~~ You received this message because you

[android-beginners] Re: Connection timeout problem in browser with DWR application

2009-08-18 Thread Justin (Google Employee)
My guess would be that this is an optimization in the Browser to reduce resource usage. That being said, what the browser does is sort of irrelevant here. On cellular networks, you'll almost never be able to have these long-idle TCP sockets. The cellular data network simply tears them down,

[android-beginners] [android-beginners]What is really locked in the HTC Magic?

2009-08-18 Thread Rafa Perfeito
Hey, Been thinkin of getting a device to get my apps on the actual road. I have the Dev Phone option (although its not shipped to Portugal..thanks google by the way...), but also the HTC Magic and soon the Samsung Galaxy. The Magic is locked, but what this really means? Only the SIM is locked? Do

[android-beginners] Re: A Google Maps App

2009-08-18 Thread Wayne Wenthin
I'm sure it's possible. But a word of Warning. If you have never programmed for the Android platform you are in for a really steep learning curve dealing with mapviews. I'm working on about 8 months and I still get surprised at least once a week. But then I could just be slow and old

[android-beginners] Re: I am trying to log my gps location to a website.

2009-08-18 Thread cellurl
I figured it out. I forgot to add INTERNET to the androidManifest.xml file Q: In the future, how would I know that I need to add something to the manifest?? thanks jp --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[android-beginners] Re: Plugin

2009-08-18 Thread Xavier Ducrohet
http://d.android.com/sdk/adt_download.html Xav On Mon, Aug 17, 2009 at 10:34 AM, Bishesh Manandharcoldda...@gmail.com wrote:  Is it possible to download the android plugin without using eclipse i need to shift eclipse to another computer.. but there is no access to internet.. is it

[android-beginners] Re: What is really locked in the HTC Magic?

2009-08-18 Thread Casper Bang
I was in the same situation, so I bought a Magic and installed another SPL (bootloader) as well as rooted it. With a stock Magic SPL you are unable to install unsigned Android images, as that's reserved for Google. But if you just want to develop simple Android/Java applications, you do not need

[android-beginners] Re: using pre-coded functionality

2009-08-18 Thread Justin Anderson
Google is stating that code of other installed applications can be used in your own application. Essentially what you can do is launch other activities/processes as long as you know the intent and intent filters for the functionality you want to include. Typically this would be done with a

[android-beginners] Re: using pre-coded functionality

2009-08-18 Thread cyclopse
First of all thanks for your reply Justin. On 18 aug, 11:45, Justin Anderson janderson@gmail.com wrote:   Google is stating that code of other installed applications can be used in your own application. Essentially what you can do is launch other activities/processes as long as you

[android-beginners] Re: TabHost problem with designing Tabs

2009-08-18 Thread Stefan
Hi, thanks for your answer. But I find the little mistake: i set the orientation of the second LinearLayout (id:unten) to vertical. (to much copy'n'paste... i copy the first LinearLayout and change the id only). Because of that, wrap_content works find, but with the wrong orientation. Regards,

[android-beginners] How to get location data using device GPS

2009-08-18 Thread Persona
Hello, The code below gets the location information and displays it on screen. If I use an emulator and provide such data manually, the program works as expected. But I have Android device, but whenever I run the program on the device the program displays 'Location not found'. Now the program

[android-beginners] Re: How to get location data using device GPS

2009-08-18 Thread Justin Anderson
You mentioned that your program turns on GPS... I haven't done much with GPS but I believe one of the changes with Android 1.5 was that you can no longer turn GPS on or off programatically... If GPS is not on you could provide a button or something that would take the user to the GPS settings

[android-beginners] Re: startActivity() crash...

2009-08-18 Thread Tikoze
Any ideas on why my app doesn't have permissions to launch the Calendar app when it is running but it does have permissions to launch virtually any other running app This bug is driving me crazy! Thanks in advance for any pointers/suggestions Justin