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

2012-07-26 Thread Lidia
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...@googlegroups.com

[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

[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()/

[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

[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
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] 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-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),

[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

[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

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

2011-10-28 Thread Lidia
://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@googlegroups.com

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

2011-10-27 Thread Lidia
android.R.layout.simple_list_item_multiple_choice Thank you for any help 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

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

2011-09-21 Thread Lidia
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 message

[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-developers] How to get an interval of bytes from a file?

2011-09-16 Thread Lidia
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 message

[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

[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

[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 from

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

2011-02-07 Thread Lidia G
/userdata-qemu.img emulator: argv[13] = -nand emulator: argv[14] = cache,size=0x420,file=C:\Documents and Settings\lidia. gutu\.android\avd\google_8.avd/cache.img emulator: argv[15] = -hda emulator: argv[16] = C:\Documents and Settings\lidia.gutu\.android\avd\google_8 .avd/sdcard.img

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

2011-02-07 Thread Lidia G
You have to set permission in manifest file for emulator to access internet On Mon, Feb 7, 2011 at 9:55 PM, Lidia G lidyp...@yahoo.com wrote: Hello guys, Please help me solve this unpleasure problem, i do not know what to do else. First i used android-sdk-r07-windows and installed from ADT

[android-developers] How to add a Search Bar

2011-01-20 Thread Lidia
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 To unsubscribe from

[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

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

2010-10-12 Thread Lidia
of 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 to android

[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.com

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

2010-10-08 Thread Lidia
for 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-developers+unsubscr

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

2010-10-07 Thread Lidia
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 group, send email to android-developers+unsubscr

[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] How to create an HIDDED file in android sdcard?

2010-10-06 Thread Lidia
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...@googlegroups.com For more

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

2010-09-28 Thread Lidia
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...@googlegroups.com For more options, visit

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

2010-09-24 Thread Lidia
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-developers+unsubscr...@googlegroups.com

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

2010-09-22 Thread Lidia
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 android-developers@googlegroups.com

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

2010-09-22 Thread Lidia G
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 lidyp...@yahoo.com wrote: From: Lidia lidyp...@yahoo.com Subject: [android-developers] How to create

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

2010-09-17 Thread Lidia
, 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 from this group, send email to android-developers+unsubscr

Re: [android-developers] How can i access the /data/data/my_project_name/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 yuvidr...@gmail.com wrote: From: YuviDroid yuvidr

[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] How to make an android notification for the application?

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

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

2010-09-16 Thread Lidia
-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 because you are subscribed

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

2010-09-16 Thread Lidia G
for MFL fantasy football owners On Thu, Sep 16, 2010 at 11:17 AM, TreKing treking...@gmail.com wrote: On Thu, Sep 16, 2010 at 10:10 AM, Lidia lidyp...@yahoo.com wrote: And using  the internal storage data are always removed after uninstall. Yes, but not during an update, to be clear

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

2010-09-16 Thread Lidia G
, 2010, 3:49 PM On Thu, Sep 16, 2010 at 10:40 AM, Lidia G lidyp...@yahoo.com 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

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 Windows XP Please help me. Lidia

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

2010-09-13 Thread Lidia G
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 lidyp...@yahoo.com wrote: From: Lidia G lidyp...@yahoo.com Subject: Re: [android-developers] Failed to parse the output of 'adb version

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

2010-09-13 Thread Lidia G
-developers@googlegroups.com Date: 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, Lidia

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 kmans...@gmail.com wrote: From: Kostya Vasilyev kmans...@gmail.com Subject: Re: [android-developers] Failed to parse the output of 'adb version' ERROR

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

2010-09-13 Thread Lidia G
13.09.2010 18:13, 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

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

2010-09-08 Thread Lidia G
any time 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

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

2010-09-08 Thread Lidia G
:57 AM On Wed, Sep 8, 2010 at 7:35 AM, Lidia G lidyp...@yahoo.com wrote: When the link button is pressed from my application and the required internet page is opened, if i press back from the phone, it is not returning any time back to my application. Is there are any possibility to make

[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

[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

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

2010-08-26 Thread Lidia G
what phone you are trying to use. Some phones require special 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 lidyp...@yahoo.com wrote: Hello guys, I am testing my

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

[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