[android-developers] Is there are an android bug for 4.0.3 on the method Activity.onActivityResult() call ?

2012-07-26 Thread Lidia
Thank you in advance Lidia -- 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-developers+unsubscr...@

[android-developers] Is it possible to open android camera and get a media path at activity response?

2012-05-24 Thread Lidia
Hello for readers, I would like to open the android camera to look like this one Intent cameraIntent = new Intent(android.provider.MediaStore.INTENT_ACTION_VIDEO_CAMERA); startActivityForResult(cameraIntent, CAMERA_PIC_REQUEST); Where user may capture an image, record a video or open video/pictu

[android-developers] Re: PROBLEM: VM won't let us allocate 153600 bytes

2012-02-08 Thread Lidia
Thanks Mark Murphy for your replay, You probably are right. Then, Is it possible to defragment the heap memory ? or to avoid heap fragmentation? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to androi

[android-developers] PROBLEM: VM won't let us allocate 153600 bytes

2012-02-08 Thread Lidia
Hello developers, Please help me to understand this: In my app i am checking heap info and as i see, i have enough space, however I have an OutOffMemory error from time to time. How is that possible, when i have, e.g: HEAP_SIZE: 7.007MB -> Runtime.getRuntime().totalMemory()/ 1024

[android-developers] Is it possible to get typed data from a quick search box without reloading the activity ?

2012-01-17 Thread Lidia
Hello to all and Happy New 2012 year! I have implemented the android quick search box http://developer.android.com/resources/articles/qsb.html for my mapActivity. Any time the user enters a location, my app have to find this and display on the map. As i see, in order to find out what user typed

[android-developers] Re: How to get picture path from camera capture, the known method is not working for all devices???

2011-12-29 Thread Lidia
Or, at least how to known which type of answer to expect? -- 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-develo

[android-developers] Re: How to get picture path from camera capture, the known method is not working for all devices???

2011-12-29 Thread Lidia
Thank you Mukesh Kumar for your idea, but would you be so kind to tell me what conditions should i use? -- 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

[android-developers] How to get picture path from camera capture, the known method is not working for all devices???

2011-12-29 Thread Lidia
Hello developers, Does anyone knows a smart/short solution for the following situation? I used the following code to get the path for just created photo with camera capture. startActivityForResult( new Intent( android.provider.MediaStore.ACTION_IMAGE_CAPTURE), MY_ACTION_

[android-developers] How to generate Gallery thumbnails?

2011-12-27 Thread Lidia
Hello, Does any one know if it is possible to generate a gallery thumbnail. I do not need a simple thumbnail, like download and decode a picture, i need to generate a gallery thumbnail, like it would be when gallery is opened. Thanks in advance, Lidy -- You received this message because you are

[android-developers] Eclipse can't see my alcatel MOVE phone for debug. Please help !!!

2011-12-07 Thread Lidia
Hello friends, I have an alcatel move phone, and i do not know what else to do to make my eclipse recognize this phone for debug. I checked on my phone - Application - Development -USB Degugging I installed a driver from Alcatel for this phone (T-Mobile Android Manager), but it is most for accoun

[android-developers] What is the best way to display facebook profile in android app?

2011-10-28 Thread Lidia
;http://www.facebook.com/profile.php? id="+facebookID, i need to scroll a lot. Does anyone have ideas? Thanks Lidia -- 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

[android-developers] Can i select all checkBoxes from android.R.layout.simple_list_item_multiple_choice

2011-10-27 Thread Lidia
Hello, I have a list view with checkBoxes from android layout and myCheckBox. I want when myCheckBox is selected to select all items from list view, and when myCheckBox is unselected to unsellect all items from listView here is a piece of my code: final ListView listFriends = (ListView) dialog.fi

[android-developers] Re: How android native gallery app works in switching thumbnails into quality photos?

2011-09-21 Thread Lidia
Thank you very much Speedy, I will try all your advices. -- 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-develope

[android-developers] How android native gallery app works in switching thumbnails into quality photos?

2011-09-21 Thread Lidia
ay. I want to know when scroll ends, or when the users stops on a photo, i want to change thumbnail photo slowly/ animated into a good quality photo. gallery.setOnItemSelectedListener() is not a good solutions, as it shortens the speed of scroll. Thanks in advance Lidia -- You received this me

[android-developers] Re: How to get an interval of bytes from a file?

2011-09-16 Thread Lidia
Thanks Jens, I already found a simple solution, to use skip() method: InputStream is = new FileInputStream(file); byte[] output = new byte[(int) bytesToRead]; is.skip(startPosition); is.read(output, 0, bytesToRead); and it seems to work good. -- You received this message because you are subscr

[android-developers] How to get an interval of bytes from a file?

2011-09-16 Thread Lidia
e the application crashes, heap memory is too low, OutOfMemoryError happens. As i see the following is not what i need: byte[] output = new byte[(int) bytesToRead]; InputStream is = new FileInputStream(file); is.read(output, offset, bytesToRead); Thanks in advance Lidia -- You received this me

[android-developers] Can i download directly a thumbnail of a picture in android

2011-09-12 Thread Lidia
wonder if it can be downloaded directly in sdcard a thumbnail of a picture. Thanks in advance Lidia -- 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

[android-developers] How to move map's zoome at the top right of the screen ?

2011-09-12 Thread Lidia
Hello , please help me if anyone knows. mapView.setBuiltInZoomControls(true); sets automatically the zoom panel at the bottom of the screen, How can i move it at the top of the screen? for 2.2 and bigger versions Thanks in advance. Lidia -- You received this message because you are

Re: [android-developers] Android emulator can't find internet connection

2011-02-07 Thread Lidia G
o: android-developers@googlegroups.com Date: Monday, February 7, 2011, 4:29 PM Do u have this in manifest file :- You have to set permission in manifest file for emulator to access internet On Mon, Feb 7, 2011 at 9:55 PM, Lidia G wrote: Hello guys, Please help me solve this unpleasure problem, i d

[android-developers] Android emulator can't find internet connection

2011-02-07 Thread Lidia G
oogle_apis_google_inc_8\images\/system.img" emulator: argv[11] = "-nand" emulator: argv[12] = "userdata,size=0x420,file=C:\Documents and Settings\lid ia.gutu\.android\avd\google_8.avd/userdata-qemu.img" emulator: argv[13] = "-nand" emulator: argv[14

[android-developers] How to add a Search Bar

2011-01-20 Thread Lidia
imple and clear tutorial, because i couldn't found anything concrete till now. Thanks in advance, Lidia -- 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

[android-developers] Is it possible to load an URL/web page into a piece of screen in android?

2010-10-14 Thread Lidia
Hello to all, How can i load an URL/web page into a piece of screen in android, e.g. only 30 % like a browser, and the rest 70% to use for printing my stuff on the screen. Can someone tell me if it is possible? Thank you, Lidia -- You received this message because you are subscribed to the

[android-developers] Re: Is the database SQLite available on all android devices and versions ?

2010-10-12 Thread Lidia
Thank You ;) Mark Murphy -- 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-developers+unsubscr...@googlegroups.co

[android-developers] Is the database SQLite available on all android devices and versions ?

2010-10-12 Thread Lidia
the device? I would be grateful for any advice. Thank you Lidia -- 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

[android-developers] WebView class from android supports xhtml, html4, html5 ?

2010-10-08 Thread Lidia
all phones? Has onyone idea? Thank you Lidia -- 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

[android-developers] Re: Can I create a file in /data in android?

2010-10-07 Thread Lidia
As i see, the lines above create new directories inside my application folders. This is not exactly what i need, but thank you anyway for you advice Daniel. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email

[android-developers] Can I create a file in /data in android?

2010-10-07 Thread Lidia
", or somewhere else inside an android phone, except sdcard? Thanks Lidia -- 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 gro

[android-developers] How to create an HIDDED file in android sdcard?

2010-10-06 Thread Lidia
lp me someone. Lidia -- 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-developers+unsubscr...@googlegrou

[android-developers] Does HttpsURLConnection has a bug in the way it tests connections for reuse?

2010-09-28 Thread Lidia
one know why this happens? Thanks Lidia -- 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-developers+unsubscr..

[android-developers] How to generate a java doc for an android project?

2010-09-24 Thread Lidia
ild/core/droiddoc.mk" Please help me someone Lidia -- 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-deve

[android-developers] How to create an executable file for android

2010-09-22 Thread Lidia G
file using usually jar command from the JDK, because, my classes contain some android specific code. How can i create an executable JAR file from android. Please help me. --- On Wed, 9/22/10, Lidia wrote: From: Lidia Subject: [android-developers] How to create an executable file for andro

[android-developers] How to create an executable file for android

2010-09-22 Thread Lidia
port ->Java ->Runnable JAR file - the Launch Configuration: is empty, and i can't go on What should i do Please help me Lidia -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to androi

Re: [android-developers] How can i access the /data/data//files/my_file.txt on a real android device

2010-09-17 Thread Lidia G
It's true, from the application i can retrieve the data from my file created. I am just curios to see the content of the file directly from the real android phone. Thank you all for your advices. Lidia --- On Fri, 9/17/10, YuviDroid wrote: From: YuviDroid Subject: Re: [android-devel

[android-developers] How can i access the /data/data//files/my_file.txt on a real android device

2010-09-17 Thread Lidia
hidden of this folder, and there is not a way to see what it contains? Thanks Lidia -- 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 fro

Re: [android-developers] How can i save a data into the phone, and keep this data after uninstall?

2010-09-16 Thread Lidia G
10:40 AM, Lidia G wrote: Chris Stewart, I think saying update here: "| And using  the "internal storage" data are always removed after uninstall.    Yes, but not during an update, to be clear, if that's your concern. " you mean an kind of override - maybe like an

Re: [android-developers] How can i save a data into the phone, and keep this data after uninstall?

2010-09-16 Thread Lidia G
tball - Android app for MFL fantasy football owners On Thu, Sep 16, 2010 at 11:17 AM, TreKing wrote: On Thu, Sep 16, 2010 at 10:10 AM, Lidia wrote: And using  the "internal storage" data are always removed after uninstall. Yes, but not during an update, to be clear, if that&#

[android-developers] How can i save a data into the phone, and keep this data after uninstall?

2010-09-16 Thread Lidia
/data/data-storage.html#filesExternal refers only about sdcard, but i would like to retrieve the data even when the sdcard is changed. And using the "internal storage" data are always removed after uninstall. Can someone please give me an idea? Thanks Lidia -- You received this message becaus

Re: [android-developers] How to make an android notification for the application?

2010-09-16 Thread Lidia G
know how to use it. Maybe someone has an idea Lidia --- On Thu, 9/16/10, Kostya Vasilyev wrote: From: Kostya Vasilyev Subject: Re: [android-developers] How to make an android notification for the application? To: android-developers@googlegroups.com Date: Thursday, September 16, 2010, 8:44 AM

[android-developers] How to make an android notification for the application?

2010-09-16 Thread Lidia
Hello, Does anyone knows how to do an android notification? I have an application that needs to be updated from time to time. I would like to know how can i implement the android notification feature for my app? I would appreciate any idea. Thanks Lidia -- You received this message because you

Re: [android-developers] Failed to parse the output of 'adb version' ERROR

2010-09-13 Thread Lidia G
ostya Vasilyev wrote: From: Kostya Vasilyev Subject: Re: [android-developers] Failed to parse the output of 'adb version' ERROR To: android-developers@googlegroups.com Date: Monday, September 13, 2010, 2:16 PM From the command line, run "java -version"

Re: [android-developers] Failed to parse the output of 'adb version' ERROR

2010-09-13 Thread Lidia G
I don't know how to find out. Can you tell me please where to find in eclipse which build of java is used --- On Mon, 9/13/10, Kostya Vasilyev wrote: From: Kostya Vasilyev Subject: Re: [android-developers] Failed to parse the output of 'adb version' ERROR To: android-developers@googlegroups.co

Re: [android-developers] Failed to parse the output of 'adb version' ERROR

2010-09-13 Thread Lidia G
te: Monday, September 13, 2010, 1:31 PM What are your: - Desktop OS (Windows / Mac / Linux), version and 32/64 bit-ness? - Java SDK version and bitness? - Eclipse version and bitness? -- Kostya 13.09.2010 17:00, Lid

Re: [android-developers] Failed to parse the output of 'adb version' ERROR

2010-09-13 Thread Lidia G
9f39e7 to runt following commands but  don't know from where exavctly. start emulator telnet localhost 5554 kill I would appreciate any help Lidia --- On Mon, 9/13/10, Lidia G wrote: From: Lidia G Subject: Re: [android-developers] Failed to parse the output of 'adb ver

Re: [android-developers] Failed to parse the output of 'adb version' ERROR

2010-09-13 Thread Lidia G
-- but i am using Windows XP and i don't know how to use kill-server command from the terminal. I mean in run/cmd there are is no such a command or how can i use the second solution - to open Activity Monitor from W

Re: [android-developers] Re: How to make screen shoots with an android device?

2010-09-09 Thread Lidia G
Thank you --- On Thu, 9/9/10, Mark Murphy wrote: From: Mark Murphy Subject: Re: [android-developers] Re: How to make screen shoots with an android device? To: android-developers@googlegroups.com Date: Thursday, September 9, 2010, 2:08 PM On Thu, Sep 9, 2010 at 10:07 AM, Lidy wrote: > No i ne

Re: [android-developers]How can i make to return from the external link to my application?

2010-09-08 Thread Lidia G
--- On Wed, 9/8/10, Sebastián Treu wrote: From: Sebastián Treu Subject: Re: [android-developers]How can i make to return from the external link to my application? To: android-developers@googlegroups.com Date: Wednesday, September 8, 2010, 10:57 AM On Wed, Sep 8, 2010 at 7:35 AM, Lidia G

[android-developers]How can i make to return from the external link to my application?

2010-09-08 Thread Lidia G
back to the application screen from which the link was opened? Please help me,  i would appreciate any advice. Lidia  -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-develop

Re: [android-developers] Re: How to make the eclipse to recognize my mobile phone?

2010-08-26 Thread Lidia G
cial drivers to be able to connect correctly for Android development. You should Google your phone and see if such drivers are available for your phone. On Aug 26, 8:49 am, Lidia G wrote: > Hello guys, > > I am testing my android application and i want to run >  from eclipse using

[android-developers]How to make the eclipse to recognize my mobile phone?

2010-08-26 Thread Lidia G
Hello guys, I am testing my android application and i want to run from eclipse using as external device Android phone. I know that it is possible to connect a mobile to PC by cable and that's all, the eclipse identifies the external device (the phone) as one of open emulators. But, it is not wo

[android-developers]How to make the eclipse to recognize my mobile phone?

2010-08-26 Thread Lidia G
Hello guys, I am testing my android application and i want to run from eclipse using as external device Android phone. I know that it is possible to connect a mobile to PC by cable and that's all, the eclipse identifies the external device (the phone) as one of open emulators. But, it is not wo

[android-developers] Re: How can i set background image for an ImageView dynamically???

2010-08-25 Thread Lidia G
Thank you all for advices.  I solved my problem and a new one. Thank you Alex for advice, i knew about localization in android, but it is not what i need. In my application flag image and some text have to change depending on the country choosen not the locale set on the platform. I found how t

Re: [android-developers] Some confusion on resource IDs

2010-08-25 Thread Lidia G
Hello guys, I have a question on the same theme. I need to use R.drawable.id's dinamicaly, depending on the country choosen, more precisely,depending on a "country" variable. For example, my screen contains a country flag. If the Deutschaland is the choosen country, i have to display  something