Re: [android-developers] Contact Manager Sample Code

2012-02-20 Thread poncho
Hi, Since the code worked on a real device and not on emulators, I just have to ask: Did you try to add any contact to the emulator before running the sample code? /Poncho On 02/19/2012 10:59 PM, Michael Ennovium wrote: The Contact Manager Sample code has given me hours of frustration. The

Re: [android-developers] Re: main,out.xml

2012-02-14 Thread poncho
en 'Launching'. You probably want to use the first option. Does this help? /Poncho -- 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 unsubscri

Re: [android-developers] installing APK without eclipse/android SDK

2012-02-12 Thread poncho
Hi, Does this helps? http://developer.android.com/guide/publishing/app-signing.html#releasecompile /Poncho On 02/12/2012 08:30 PM, John Goche wrote: Hello, I would like to send my APK to someone by email so that they may install it using WIndows Vista. I have searched for info on how they can

Re: [android-developers] Custom label and text box in ListView?

2012-02-09 Thread poncho
n a ScrollView, containing horizontal LinearLayours of the TextView and EditText. BTW, I struggled the ListView for three weeks before finding this thread. Hope this helps /Poncho On 02/09/2012 05:13 PM, Mark Winchester wrote: I'm trying to find a bit of sample code that I'm having tro

Re: [android-developers] Shared Preferences

2012-02-07 Thread poncho
even when it's long. Hope this helps /Poncho On 02/07/2012 02:54 PM, ajay talreja wrote: This code is not working for mei'm trying to use Shared preferences to store long values.the code is correct and is launching successfully when i switch from long to int v

Re: [android-developers] Contact Number

2012-01-24 Thread poncho
Hi, 1) You should call the contact picker using startActivityForResult 2) You should override onActivityResult and parse the data returned from the contact picker. Something like: ... Uri result = data.getData(); String id = result.getLastPathSegment(); Cursor cursor = getConte

Re: [android-developers] How can i display exactly on the top....?

2012-01-04 Thread poncho
Hi, What happen if you try to move the popup before displaying it using the following line? "popup.layout( left, top, left + popup.getWidth(), top + popup.getHeight());" /Poncho On 01/04/2012 11:35 AM, Abhilash baddam wrote: Hi poncho, Thanks for the reply. I di

Re: [android-developers] How can i display exactly on the top....?

2012-01-03 Thread poncho
Hi, I'm not sure that I understand, what's wrong with: popup.layout( left, top, left + width, top + height); /Poncho On 01/04/2012 08:21 AM, Abhilash baddam wrote: Hi, My problem is when i tap on the marker i want to show the popup exactly on the top of the marker like di

Re: [android-developers] compiler compliance problem

2012-01-02 Thread poncho
You are doing fine. I guess you are using Eclipse so within Eclipse: Right Click you project (in the Package Explorer view) and select Android Tools > Fix Project Properties :) Hope this helps /Yaron On 12/30/2011 07:59 AM, brucenow wrote: I thought I was doing pretty good getting everything

Re: [android-developers] simulate hte speed for amdroid phones

2011-12-22 Thread poncho
port 5556. Hope this helps /Poncho -- 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 group, send email to android-developer

Re: [android-developers] Re: Edittext in Listview crashes on Android 2.2.3 on back during editing

2011-12-14 Thread poncho
e better options?" I have soln for maintaining the content. I can have text watcher or something. From the same thread: " vertical LinearLayout wrapped ina ScrollView, containing horizontal LinearLayours of the EditTexts andButtons" Hope this helps /Yaron On Dec

Re: [android-developers] Edittext in Listview crashes on Android 2.2.3 on back during editing

2011-12-13 Thread poncho
http://groups.google.com/group/android-developers/browse_thread/thread/50f0fc185da8fe4d?pli=1 On 12/14/2011 08:08 AM, havexz wrote: Hi So here is what I did. I have a ListView and each item in it is a EditText. Now, just so you know I am using CursorAdapter with ListView, and I am creating Edit

Re: [android-developers] changing sound profiles

2011-11-17 Thread poncho
Maybe here? http://developer.android.com/reference/android/media/AudioManager.html On 11/17/2011 11:41 AM, kaoutar ben ahmed wrote: hello everyone, i'am working on a project in which i need to be able to change the phone mode to silence or vibration or normal sound. i could not find any info

Re: [android-developers] Problem with listVIew

2011-11-14 Thread Poncho
LinearLayout with ScrollView, worked for me as well. Hope this helps /Poncho On 11/11/2011 02:39 PM, Elison Lusvardi wrote: Hi guys, how are you? I have a problem in my application's ListView. Each item in the ListView can be created by different widgets, some have pictures, the layout is differe