[android-developers] Re: file that is wriiten on an SDCard not visible

2008-10-16 Thread Megha Joshi
2008/10/15 guru <[EMAIL PROTECTED]> > > I needed to download a file and store it in my sdcard.I first save it > by writing in the output stream(by using openFileOutput) in the > application package.From here I copy it to my SDCard and its written > on my SDCard.But when i see my SDCard in the file

[android-developers] Re: possible to lock device?

2008-10-16 Thread shailesh prakash
Sure it does, but if your phone is stolen then it should wake up in password lock mode and ack should send to alternative number or mail with gps location and cell ID(network operator's cell). On Fri, Oct 17, 2008 at 11:34 AM, hackbod <[EMAIL PROTECTED]> wrote: > > I believe PowerManager.goToSle

[android-developers] Background music in application

2008-10-16 Thread bins
hi all. How can play background music on android.while working my application I need To play an audio file in background of the application..how can i DO that..,I know that Can do With MediaPlayer But I am getting an Error Like 10-16 11:12:02.549: WARN/AudioFlinger(23): write blocked for 83 msecs

[android-developers] Why is onPause() called

2008-10-16 Thread PAS
Hi all, I noticed that if the orientation of the phone changes (portrait to landscape mode), my Activity is restarted, calling onPause(), onStop(), onStart(), and onResume(). The same thing happens when my Activity is running and a phone call comes in. I would like to treat these two events diff

[android-developers] Re: possible to lock device?

2008-10-16 Thread hackbod
I believe PowerManager.goToSleep() should lock the device as part of putting it to sleep: http://code.google.com/android/reference/android/os/PowerManager.html#goToSleep(long) On Oct 16, 9:51 pm, Mast3rpyr0 <[EMAIL PROTECTED]> wrote: > hmm i wish there was a simple lockDevice() method :P > this

[android-developers] Re: file that is wriiten on an SDCard not visible

2008-10-16 Thread for android
Please could anyone help me On Thu, Oct 16, 2008 at 11:32 AM, guru <[EMAIL PROTECTED]> wrote: > > I needed to download a file and store it in my sdcard.I first save it > by writing in the output stream(by using openFileOutput) in the > application package.From here I copy it to my SDCard and

[android-developers] Re: possible to lock device?

2008-10-16 Thread shailesh prakash
Best of luck for your beta On Fri, Oct 17, 2008 at 10:21 AM, Mast3rpyr0 <[EMAIL PROTECTED]> wrote: > > hmm i wish there was a simple lockDevice() method :P > this is the last thing i need before i want to release my app. > it goes out for a closed beta on the 22nd. > > On Oct 17, 12:33 am, "shail

[android-developers] Re: possible to lock device?

2008-10-16 Thread Mast3rpyr0
hmm i wish there was a simple lockDevice() method :P this is the last thing i need before i want to release my app. it goes out for a closed beta on the 22nd. On Oct 17, 12:33 am, "shailesh prakash" <[EMAIL PROTECTED]> wrote: > Hey Mast3rpyr0, > > I did try it earlier but drop in between. I had p

[android-developers] Re: possible to lock device?

2008-10-16 Thread shailesh prakash
Hey Mast3rpyr0, I did try it earlier but drop in between. I had plans to do it like this, Send SMS, broadcast receiver will listen it and open msg read content match with data in SQLite database and change phone state accordingly. I implemented till the last and most tedious task, changing ph

[android-developers] Re: call a soap web service from an android application

2008-10-16 Thread shailesh prakash
Hi christian110011, for kSOAP, you have to do something like this : // you have to download ksoap for j2me and extend it's org.ksoap2.transport.Transport and implement ServiceConnection, coz it is built // for j2me not Android, you can eaisly find these two on other android group Thread t = new

[android-developers] possible to lock device?

2008-10-16 Thread Mast3rpyr0
Im working on a security app that allows a user to track their phone on a web site if they lose the phone or it is stolen. I already have the part working where i could do this if a user selected lock on the site but once the device gets this data, how can i have the device go into the locked stat

[android-developers] Re: image manipulation

2008-10-16 Thread Bill Zimmerly
On Oct 16, 10:11 pm, j <[EMAIL PROTECTED]> wrote: > Does Android come with any package/classes for image manipulations > (e.g. contrast, brightness adjustments)? Thanks! Here's a quick link to the class that Mike wrote about... http://code.google.com/android/reference/android/graphics/ColorMatr

[android-developers] Re: HttpURLConnection getResponseCode

2008-10-16 Thread Gil
I learned more about the problem. It always occurs after I cancel a GET request. By cancel I mean quit the loop that reads from the input stream, disconnect the HttpURLConnection and quit the thread which runs the connection. Next HttpURLConnection I create exhibits the problem described above. If

[android-developers] Re: image manipulation

2008-10-16 Thread Mike Reed
At the low-level, take a look at android.graphics.ColorMatrix On Oct 16, 2008, at 8:11 PM, j wrote: Does Android come with any package/classes for image manipulations (e.g. contrast, brightness adjustments)? Thanks! --~--~-~--~~~---~--~~ You received this mes

[android-developers] Location based search

2008-10-16 Thread JP
Is location based search available in 1.0? We had classes google.googlenav.Placemark and google.googlenav.Search which provided this functionality in the M3 SDK. The built-in Maps app still offers this feature. Has this been cut off, or have I just not been able to locate it in the current SDK? -

[android-developers] image manipulation

2008-10-16 Thread j
Does Android come with any package/classes for image manipulations (e.g. contrast, brightness adjustments)? Thanks! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, se

[android-developers] Re: WebView loadData limitations

2008-10-16 Thread Rubicks
Thanks Dave. I am trying to use the example you mentioned (ElementProvider). This is how I use it. ContentValues values = new ContentValues(); values.put("KEY_DATA", "/demo.html"); ElementProvider ep = new ElementProvider(); Uri u

[android-developers] Re: How do i set onClick image

2008-10-16 Thread zl25drexel
I figured this out myself. for those who are interested, see http://bend-ing.blogspot.com/2008/10/android-how-to-implement-custom-button.html On Oct 15, 10:03 am, zl25drexel <[EMAIL PROTECTED]> wrote: > anyone? > > On Oct 14, 5:14 pm,zl25drexel<[EMAIL PROTECTED]> wrote: > > > Hi, > > > Does anyon

[android-developers] Re: HttpURLConnection getResponseCode

2008-10-16 Thread androidian
I have the same problem. No idea what's happening. On Oct 16, 4:04 pm, Gil <[EMAIL PROTECTED]> wrote: > I have a class that implements an HttpURLConnection. The class works > fine most of the time. Once in a while when I perform a GET operation > getResponseCode returns -1. Does anyone know und

[android-developers] Re: dalvikvm: Ignoring not-yet-ready ... using slow path

2008-10-16 Thread fadden
On Oct 14, 3:00 pm, meiko <[EMAIL PROTECTED]> wrote: > Anyone knows what can be cause of this problem ? > > DEBUG/dalvikvm(199): Ignoring not-yet-ready Lscala/actors/ > SuspendActorException;, using slow path > > Why is this class "not-yet-ready" ? > What means "slow-path" ? The "DEBUG" tag indic

[android-developers] Re: I can't start project in Eclipse 3.2 with Android 1.0 SDK (Ubuntu 8.04)

2008-10-16 Thread Selmi
and some additional information eclipse error log says: An internal error occurred during: "Android SDK Content Loader". stack trace: java.lang.NoSuchMethodError: org.eclipse.core.runtime.Status.(ILjava/lang/String;Ljava/lang/ String;Ljava/lang/Throwable;)V at com.android.ide.eclipse.adt.AdtPlugi

[android-developers] I can't start project in Eclipse 3.2 with Android 1.0 SDK (Ubuntu 8.04)

2008-10-16 Thread Selmi
my system is Ubuntu 8.04 32bit version at the beginnig I had Eclipse installed, also Android SDK 0.5 and everything worked well, since i updated SDK to lastest 1.0 I always get error when i try to open any project or create new one: 'An internal error occurred during: "Android SDK Content Loader

[android-developers] Re: How to detect whenever any Textbox gains focus?

2008-10-16 Thread Mark Murphy
CM wrote: > I want to be able to set up a listener that can determine when any > textbox in any application gains focus. Is this possible? Not in the current SDK. That would be a massive security hole. -- Mark Murphy (a Commons Guy) http://commonsware.com Android Training on the Ranch! -- Ma

[android-developers] Re: call a soap web service from an android application

2008-10-16 Thread Cezar Augustus Signori
Yeah :D first: Some say that you have to use k2SOAP. second: Some say that you need to connect and handle the response. If you prefer the second, you can use the code under http://forum.android.pro.br/forums/1/topics/115 and change the "tv.setText(res);" line to XML handling. Cheers, Cezar O

[android-developers] Re: Collecting opinions about Android for an article

2008-10-16 Thread Jake Maui
The Android platform is a joy to develop. I've been a software developer for over 20 years now and I'd have to say that this is one of the few platform I've ever used where I didn't have to developer layers and layers of my own code to finally get something useful. The platform has many useful th

[android-developers] How to detect whenever any Textbox gains focus?

2008-10-16 Thread CM
I want to be able to set up a listener that can determine when any textbox in any application gains focus. Is this possible? Do I create a service with some kind of onFocusChangeListener? Thanks in advance --~--~-~--~~~---~--~~ You received this message because

[android-developers] Listview click event with button

2008-10-16 Thread goldfish
Hello, I have a custom listview contol that performs on click event handling when a user clicks a list item. When I add a button to each listview item my listview click event stops working and only my button's click event fires. If I remove the button the listview's click event fires correctly. I

[android-developers] Re: Device unique ID, other than getDeviceId()?

2008-10-16 Thread Mark Murphy
Al Sutton wrote: > Sorry to just throw this in, but is there any reason you're using the > 'phone ID and not the users 'phone number? (i.e. getLine1Number() in > android.telephony.TelephonyManager). Because the customer wants a device ID. > The reason I'm asking is that if you're looking at a

[android-developers] Re: AliasActivity: Two Questions

2008-10-16 Thread jtaylor
The tag appears to enable different manifest attributes for the same activity. AliasActivity is something I'd have to see in an example to really understand it. At least it sounds uncommon. - Juan T. On Oct 16, 4:44 pm, hackbod <[EMAIL PROTECTED]> wrote: > The tag can only be used to link to

[android-developers] Re: AliasActivity: Two Questions

2008-10-16 Thread hackbod
The tag can only be used to link to another activity implement in the same manifest as the tag appears, and when this alias is launched by the system it just directly launches the target activity so there is no actual implementation behind it. The AliasActivity class is just a standard Activity

[android-developers] Re: Application Size Limits?

2008-10-16 Thread hackbod
I would strongly recommend against creating applications that are so large. Keep in mind that the available space for applications (and other secure data like mails, contacts, etc) on the G1 is < 128MB, so just installing that app is a huge commitment to the user in that it greatly decreases the

[android-developers] Re: What happens to the Intent internally after startActivity ??? (especially to Google-Developers)

2008-10-16 Thread hackbod
You can't do that. The Intent object gets propagated across multiple processes, so your subclass implementation will be lost (your code is even just not at all available to some of the processes the Intent will be used). As Andrew says, you should put addition data in the extras field. On Oct 1

[android-developers] Limited XML Support

2008-10-16 Thread CyberPhone
Hi, I'm trying to get an XML Schema app using Xerces to work in Android. It seems that although Android is supposed to be almost java 5 compatible, this is not valid for XML. By looking att the org.w3c.dom classes I note that only level 2 interfaces are supported which I guess means that it will

[android-developers] HTC G1 for ADC developers (europeans, asians and africans): results

2008-10-16 Thread arnouf
Hello all, I published, Sept-24, a question form to know if every people was agree for HTC/Google/T-Mobile proposing a special offer for ADC participants and for people outside of US. Results are now available http://spreadsheets.google.com/pub?key=pBxgcXvOI-GV1iap7C7vtEA Arnaud http://www.phon

[android-developers] Re: What happens to the Intent internally after startActivity ??? (especially to Google-Developers)

2008-10-16 Thread Andrew Stadler
You might have more luck simply storing your object in the "extras" structure provided in every Intent. Remember that Intent data must be parcelable so that it can be transported between processes. --~--~-~--~~~---~--~~ You received this message because you are su

[android-developers] Re: MapView API Key??

2008-10-16 Thread atrus123
I believe that should be it. AFAIK, it's a different service than the standard maps key service. I wonder why Google hasn't activated it yet. I also wonder why they haven't opened the Market for submissions yet. On Oct 16, 2:45 pm, zl25drexel <[EMAIL PROTECTED]> wrote: > Can someone confirm th

[android-developers] Webview Zoom Picker

2008-10-16 Thread RLo
Hi all, I'm using the webview and would like to add functionality to zoom in and out. The zoompicker (used in the browser) is most natural, but when I try to call it using invokeZoomPicker(), nothing happens. I've tried calling it in many different ways, but it doesn't show up. Anyone know how

[android-developers] Re: MediaPlayer streaming playback

2008-10-16 Thread zl25drexel
we are able to play .mp4 (streaming). You need to make sure your mp4 is android compatible. if not, on linux, use MP4Box test.mp4 -hint to make the video compatible. On Oct 16, 2:33 am, Jason Proctor <[EMAIL PROTECTED]> wrote: > can you stream video? > > has anyone managed to stream video? if s

[android-developers] Re: MapView API Key??

2008-10-16 Thread zl25drexel
Can someone confirm that's the key i need? http://code.google.com/android/toolbox/apis/mapkey.html On Oct 15, 7:14 pm, Anm <[EMAIL PROTECTED]> wrote: > Is this not it: >    http://code.google.com/apis/maps/signup.html > > Same key used by any Google Maps mash-up. > > Anm --~--~-~--~~-

[android-developers] Re: Getting GPS Location in Android 1.0 SDK

2008-10-16 Thread Gautam
Thanks Ludwig for pointing me in the right direction :) I've got it working now and this is how it works for me: For getLastKnownLocation() to work, the best way is to telnet into the emulator geo fix command or DDMS controls using Eclipse. Without using one of these options above to set the loc

[android-developers] call a soap web service from an android application

2008-10-16 Thread christian110011
hi all does anybody know how to call a soap web service from an android application (ie. the android app is the web service client)? which approaches are the best? any alternatives? thx :-) regards, christian --~--~-~--~~~---~--~~ You received this message because

[android-developers] Re: WebView loadData limitations

2008-10-16 Thread schmielson
Hey Rubicks, Check out this thread: http://groups.google.com/group/android-developers/browse_thread/thread/beae7de5e2500cb6/45977f54cf4aa592 WebView does not support file:/// URLs. Best, Dave On Oct 15, 5:47 pm, Rubicks <[EMAIL PROTECTED]> wrote: > May be this is what you meant?  myActivityLau

[android-developers] Capabilities of Location API

2008-10-16 Thread NickDG
We're investigating the possibility of creating a smart phone application that uses the GSM network to determine the location of the phone. We will study different methods of calculating positions and to do that we need extensive data about the network such as IDs, signal strengths, etc of cell t

[android-developers] Collecting opinions about Android for an article

2008-10-16 Thread alexbottoni
Hi Androids, I'm an italian technical journalist and I'm writing an article about this platform for an italian paper-based magazine devoted to Linux. I would be happy to collect a few opinions about Google Android from the people who actually use it and from the people who write code for it. In

[android-developers] Re: creating an address book

2008-10-16 Thread And-Rider
Try out this link http://pcquest.ciol.com/content/Developer/2008/108040502.asp On Oct 7, 10:33 am, dilu <[EMAIL PROTECTED]> wrote: > Hi > I am new to this platform.I want to create a simple application like > adding a name and phone number to contact address.How to start writing > code for this?

[android-developers] Playing XMF files with MediaPlayer

2008-10-16 Thread Nathan
Has anyone gotten a XMF media file ( http://en.wikipedia.org/wiki/Extensible_Music_Format_(XMF) ) to play on android using the MediaPlayer? Supposedly XMF support was added to Android in release m5-rc14 using the sonivox libraries but I can't seem to get them to play. Thank you for any help or i

[android-developers] What happens to the Intent internally after startActivity ??? (especially to Google-Developers)

2008-10-16 Thread OC
Hello. I've created a Class that extends android.content.intent and called it ExtIntent. The reason was to give the Intent the possibility to hold a simple Object. (just for testing) In my calling Activity, I created an instance of ExtIntent and set it up like the normal way for an Intent. Altho

[android-developers] Re: Trouble Opening Files via Intent

2008-10-16 Thread OC
Hello. Ok, my English is not so good, but I'll try my best. You'll have to set the correct Data and Type. You have to define the Type by yourself, by getting the fileextension. Type means the main MIME-type like audio/* or image/*. For example: You clicked at the file "MyFavouriteSong.mp3" you

[android-developers] Capabilities of Location API

2008-10-16 Thread NickDG
We want to develop an application that uses the GSM network to get a position. There are several methods for getting a position based on cell tower info but to achieve a acceptable level of accuracy the info (ID, signal strength, ...) of *all* visible cell towers is needed, not just from the cur

[android-developers] Application Size Limits?

2008-10-16 Thread Ludwig
I have an application that requires for some part of its functionality on a larger set (about 15MB) of resources embedded in the APK. Already with the emulator I get the problem that I cannot upload the APK anymore as it has become to big. Is there a switch that controls this for the emulator somew

[android-developers] Re: Getting GPS Location in Android 1.0 SDK

2008-10-16 Thread Ludwig
There has been a recent exchange over this: http://groups.google.com/group/android-developers/browse_thread/thread/ad6d7ddd57c51061/4e45035ac6bce5f1?lnk=raot Apologies if I missed a more specific problem in your question. Ludwig 2008/10/16 Matthias <[EMAIL PROTECTED]> > > anyone found a solutio

[android-developers] Re: AMR Codec List

2008-10-16 Thread Breno
Nobody? Google Team, can you help me? Thanks a lot Breno On Oct 7, 11:29 am, "Breno T. Minzon" <[EMAIL PROTECTED]> wrote: >   Hi all, > >      After spent some time googling, i can't find any information about AMR > audio codec list. i found just this google's doc > > http://code.google.com/and

[android-developers] Re: Getting GPS Location in Android 1.0 SDK

2008-10-16 Thread Matthias
anyone found a solution? I am still struggling over this... --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubs

[android-developers] Re: How to display a local file in the browser?

2008-10-16 Thread Anthony
Hi Megha, Thanks for your example. My question is how to get asset htm file's length, AssetManager.openFd(String fileName).getLength() will get an error to tell cannot open the htm file. Thanks. Anthony On 8月22日, 上午4时21分, "Megha Joshi" <[EMAIL PROTECTED]> wrote: > On Wed, Aug 20, 2008 at 4:46 PM

[android-developers] Re: AliasActivity: Two Questions

2008-10-16 Thread jtaylor
Well, what exactly is the difference between the two to understand them better? - Juan T. On Oct 15, 10:29 pm, "Romain Guy" <[EMAIL PROTECTED]> wrote: > Photostream uses an activity-alias, not an AliasActivity (they are different > :) > > > > On Wed, Oct 15, 2008 at 7:24 PM, jtaylor <[EMAIL PR

[android-developers] Mail api or access to mail authentication?

2008-10-16 Thread Jake Maui
Is there an api that would allow for sending of a photo from your application to an individual on the contacts list? If not, can we use Javamail but have access to stored authentication so that we don't require a user to have to go through a setup to store credentials? --~--~-~--~~---

[android-developers] Re: Mock Location Providers in 1.0

2008-10-16 Thread Matthias
Still doesn't work for me. Playing a GPX file from that tramper site, but my app doesn't seem to receive any location updates; LocationManager.getLastKnownLocation() always returns null when using the GPS provider. I have enabled app permissions for fine grained location access (i.e. using GPS),

[android-developers] Re: Remote app removal

2008-10-16 Thread Shane Isbell
We will see how it's used by the carriers, this being kind of a poor-man's device management. Definitely something useful for security and removal of malicious apps. Shane On Thu, Oct 16, 2008 at 9:30 AM, Live Crunch <[EMAIL PROTECTED]> wrote: > > Yeah I saw that on > http://tmobileg1fans.com/an

[android-developers] Re: MapActivity - Couldn't get connection factory client

2008-10-16 Thread Matthias
I have the same problem. Any ideas yet? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this grou

[android-developers] Re: Remote app removal

2008-10-16 Thread Live Crunch
Yeah I saw that on http://tmobileg1fans.com/android-os/android-has-kill-switch-too! On Oct 16, 8:23 am, Al Sutton <[EMAIL PROTECTED]> wrote: > Just a heads up that it might be something that developers need to consider. > > Seehttp://www.computerworld.com/action/article.do?command=viewArticleBas.

[android-developers] CallLog

2008-10-16 Thread [EMAIL PROTECTED]
Hi every body, i 'd like to manage de native application CallLog. So I try to add some call in this application. I use a source like to add contact. setContentView(R.layout.main); ContentValues value= new ContentValues(); value.put(CallLog.Calls.CONTENT_ITEM_TYPE, "text"); Uri NCallLog =get

[android-developers] Remote app removal

2008-10-16 Thread Al Sutton
Just a heads up that it might be something that developers need to consider. See http://www.computerworld.com/action/article.do?command=viewArticleBasic&taxonomyName=Software&articleId=9117279&taxonomyId=18&pageNumber=1 -- Al Sutton http://andappstore.com/ --~--~-~--~~---

[android-developers] Re: Getting GPS Location in Android 1.0 SDK

2008-10-16 Thread Gautam
Hi I went through some forum entries for gps.conf and found this: "gps.conf error is not critical...this file is not needed for the mock gps feature on emulator. So you can ignore this error. " http://groups.google.com/group/android-developers/browse_frm/thread/e6f79b90abf1e043/d978954036f60f7f?l

[android-developers] Re: Help: why can't I use com.google.api.translate in my Android application

2008-10-16 Thread redmapleleaf
I got it now. Thank a million ecompositor. I added to my manifest and it is all working. On Oct 16, 8:43 am, redmapleleaf <[EMAIL PROTECTED]> wrote: > Hi, > > No I didn't, would you please show me how? I am new to android so I > would appreciate it very much if you could help me out. > > Thanks

[android-developers] Re: Device unique ID, other than getDeviceId()?

2008-10-16 Thread Al Sutton
Mark, Sorry to just throw this in, but is there any reason you're using the 'phone ID and not the users 'phone number? (i.e. getLine1Number() in android.telephony.TelephonyManager). The reason I'm asking is that if you're looking at a licensing solution you probably want to consider if the us

[android-developers] Re: Help: why can't I use com.google.api.translate in my Android application

2008-10-16 Thread redmapleleaf
Hi, No I didn't, would you please show me how? I am new to android so I would appreciate it very much if you could help me out. Thanks On Oct 15, 1:52 pm, ecompositor <[EMAIL PROTECTED]> wrote: > Did you give the application INTERNET permission in the manifest? > > On Oct 14, 8:58 am, redmaplel

[android-developers] Contacts.PresenceColumns documentation/API mismatch.

2008-10-16 Thread Tauno T
The dox @ http://code.google.com/android/reference/android/provider/Contacts.PresenceColumns.html indicate that android.provider.Contacts.PresenceColumns contains the following public static fields: PRIORITY, PRESENCE_STATUS, PRESENCE_CUSTOM_STATUS, OFFLINE, INVISIBLE, IDLE, DO_NOT_DISTURB, AWAY,

[android-developers] Re: Device unique ID, other than getDeviceId()?

2008-10-16 Thread Mark Murphy
jtaylor wrote: > It's hard to answer your questions when you know just about > everything. Wiseguy. ;-) Besides, Android is *huge*. I'll admit I've done more than scratch the surface, but there's loads of stuff I haven't even begun to explore yet (e.g., OpenGL, 2D graphics). And, as demonstra

[android-developers] Re: How to change the ringtone of the phone

2008-10-16 Thread for android
Thanks for your reply,but i need to know say i download an mp3 ...i need to change the ringtone from that screen only,the rings extended application is different..it gives the selected uri as data to the Intent.. Thanks for ur time On Thu, Oct 16, 2008 at 12:15 PM, Steve Oldmeadow <[EMAIL PROTEC

[android-developers] Re: ListView Issue in Notepad Application

2008-10-16 Thread JavaAndroid
Thanks Peli, For ur valuable response. I tried with that too but it was not working the problem is protected void onListItemClick(ListView l, View v, int position, long _id) this rowId value _id in onListItemClick remains on 0 for all records, hence the value which we set in Intent remains t

[android-developers] To start a new intent to see the contacts of the phone from an application

2008-10-16 Thread for android
hi, I need to take the user to the Contacts page after a certain operation? How do i accomplish it? Thanks for ur time Guru --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to th

[android-developers] Re: PathClassLoader failed in SDK 1.0, worked in 0.9

2008-10-16 Thread MoggoDude
On Sep 30, 3:48 pm, Wesley <[EMAIL PROTECTED]> wrote: > hi Lia, > > Thanks for the guide... It's worked (/data/dalvik-cache/)... but now... > > may I ask one more questions??? > > if I got the error below, how??? I try to change mode(chmod 777) is not > working... > > 09-30 05:41:09.305: INFO/WE

[android-developers] Re: Custom animation doesn't invalidate the area correctly

2008-10-16 Thread Erik Calissendorff
For anyone else interested, I have now found the solution. While I'm still improving my solution the problem was that the old child was placed in mDisappearingChildren and was therefor painted by the main view even after I thought it was removed. Send me a message if you have a similar problem

[android-developers] Re: Dalvik virtual machine specifiation

2008-10-16 Thread Linuxemacs
wiki 写道: > Are there any official documentaion available for the Dalvik Virtual > Machine? > > > > > No, it haven't been released. Waiting for android source code release~~~;) BR! Linuxemacs -- Thanks & Regards Jiang Jiang E-mail: [EMAIL PROTECTED] --~--~-~--~~~---

[android-developers] Question regarding default Contacts application.

2008-10-16 Thread Tauno T
Hi, I added a new contact in the default Contacts app and added all possible IM names to it. If I click any of the IM options later, then the following Intents are triggered: Intent { action=android.intent.action.SENDTO categories={com.android.im.category.MSN} data=im:name } Intent { action=andro

[android-developers] HttpURLConnection getResponseCode

2008-10-16 Thread Gil
I have a class that implements an HttpURLConnection. The class works fine most of the time. Once in a while when I perform a GET operation getResponseCode returns -1. Does anyone know under what circumstances getResponseCode returns -1? The documentation states: "the response code, -1 if no valid