[android-developers] Soap response parsing

2011-09-25 Thread hüseyin toplu
How to parse soap response envelop ?? -- 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

Re: [android-developers] malloc() in the Renderscript

2011-09-25 Thread Dianne Hackborn
Because the purpose of RenderScript is to render and compute, not to manage memory. On Sat, Sep 24, 2011 at 12:41 AM, Macotonalds macotona...@gmail.com wrote: Thank you for your reply. I'm sorry for a belated reply. Does it means that the only way to allocate memory is the procedure of

[android-developers] width of image 480px doesn't fit device screen (webview)

2011-09-25 Thread dara kok
Hi, I've a problem trying to understand one thing. I use an image measured to be 480px wide according to its property screen shown on my computer. and I have a HTC Incredible S. Looking at the device spec, it shows 480px wide screen. I build an app and use the image, load the image from local

[android-developers] Re: ViewFlipper class does not support SurfaceView like it should

2011-09-25 Thread Trev16v
Hi all, I've followed this thread with interest because I had intended to do something very similar; that is, have multiple pages that the user can swipe between (using a ViewFlipper) where some screens may be composed of a mixture of SurfaceViews and normal Views. To be clear, I don't wish to

Re: [android-developers] Re: ViewFlipper class does not support SurfaceView like it should

2011-09-25 Thread Romain Guy
The mechanisms that won't work correctly with SurrfaceViews are animations of any kind (fade, translate, scale, etc.) Since a scroll is a form of a translate animation... On Sun, Sep 25, 2011 at 2:33 AM, Trev16v trev...@googlemail.com wrote: Hi all, I've followed this thread with interest

Re: [android-developers] parcelable again: passing object BACK through activity stack

2011-09-25 Thread John Goche
On Fri, Sep 23, 2011 at 9:53 PM, Streets Of Boston flyingdutc...@gmail.comwrote: 1) The onActivityResult will have a result-code of RESULT_CANCELED and its 'Intent data' parameter will be null. 2) Yes, you can pass back any Intent, even the one that started the child-activity. You don't need

[android-developers] Re: Frame Drop Management in Video Player

2011-09-25 Thread Ganesh
Hi Doug, Many thanks for responding to my query. I completely agree with your explanation. To ensure that end-user experience is fine, audio shouldn't be compromised with. However, I had a related point. If the CPU is not sufficient for video decoding, the current algorithm will drop the frames.

[android-developers] Re: Camera taking issue in LG optimus

2011-09-25 Thread gjs
Hi, What is the exception ? Regards On Sep 23, 4:40 pm, ANKUR GOEL ankur1...@gmail.com wrote: Hi all, i am using lg optimus for taking camera and saving it .. with input stream its giving exception in     out = new FileOutputStream(destination); this line can antbody help regarding this

[android-developers] Creating PNG images for app startup, background etc

2011-09-25 Thread KK
Hi All, I'm finding it difficult to get a PNG image of required size(and other parameters) that I can use during app start and may be also for the app background. Can someone point me to some tutorial or help me on how to create these PNG images with ease. I tried downloading some images(PNG ones

[android-developers] Re: Where the Apk files are stored in Device ?

2011-09-25 Thread Dan
On Sep 25, 12:21 am, skink psk...@gmail.com wrote: On Sep 25, 2:27 am, 劲男王 wjn...@gmail.com wrote: /system/bin/app? There is no such path. Apks are store either in /data/app or /system/app pskink Depends on the phone, OEMs are allowed to move the directory around (and it probably also

[android-developers] Re: How to use SensorSimulator @ http://code.google.com/p/openintents/wiki/SensorSimulator

2011-09-25 Thread Adam Ratana
It's been a long time since I've used this, but iirc, you do have to make some modifications to your existing code to get this to work (in addition to what you've already done), so your mSensorManager must be an instance of SensorManagerSimulator, instead of SensorManager, for instance. This

[android-developers] java.util.concurrent.RejectedExecutionException

2011-09-25 Thread bob
Any ideas what might be causing this in a plane fighting game that I wrote for Android? java.util.concurrent.RejectedExecutionException at java.util.concurrent.ThreadPoolExecutor $AbortPolicy.rejectedExecution(ThreadPoolExecutor.java:1464) at

[android-developers] Fragments with fragment tabs

2011-09-25 Thread Rimma Sukhovsky
I'm converting my app to work with fragments, and i have a layout similar to manage applications in honeycomb. That is, there is a list fragment on the left and a tab fragment on the right. Each tab should contain another inner ListFragment. The problem is that i'm getting the following exception:

[android-developers] Regarding XML Parsing issue

2011-09-25 Thread sourabh sahu
Hi All, I am trying to parse XML file using pull parser.Here is the file ?xml version =1.0

[android-developers] NDK Issue

2011-09-25 Thread sourabh sahu
Hi All, Can anybody please probile me exact step by step procedure for installation of NDK and running a JNI based project on android on Ubuntu. Thanks Regards, Sourabh -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Re: NDK Issue

2011-09-25 Thread JP
http://developer.android.com/sdk/ndk/index.html On Sep 25, 8:12 am, sourabh sahu souruit...@gmail.com wrote: Hi All, Can anybody please probile me exact step by step procedure for installation of NDK and running a JNI based project on android on Ubuntu. Thanks Regards, Sourabh -- You

[android-developers] Android unconferences/BarCamps

2011-09-25 Thread nadam
Sorry if this is not directly about android programming, but I hope it's considered on topic anyway... Other open source communities have instructions and names for local unconferences, for instance Drupal with DrupalCamp (http:// groups.drupal.org/node/136494). We're about to organize a small

[android-developers] alarms expired popup window at boot time problems

2011-09-25 Thread John Goche
Hello, I need to set a bunch of alarm times inside an application which uses an SQLite database to store them. When the user changes data in the application the data is written to the SQLite database and the RTC timer is set via AlarmManager to the earliest of all those alarm times. When each

Re: [android-developers] Re: How to use SensorSimulator @ http://code.google.com/p/openintents/wiki/SensorSimulator

2011-09-25 Thread KK
Hi Adam, Thanks for the quick help. You are right, once I changed the mSensorManager to be an instance of SensorManagerSimulator, it worked like a charm. Thank you. --KK On Sun, Sep 25, 2011 at 7:16 PM, Adam Ratana adam.rat...@gmail.com wrote: It's been a long time since I've used this, but

Re: [android-developers] parcelable again: passing object BACK through activity stack

2011-09-25 Thread TreKing
On Sun, Sep 25, 2011 at 6:26 AM, John Goche johngoch...@googlemail.comwrote: Is it safe to refresh the screen widgets with the data in onActivityResult() or is it better to do this inside onStart()? It is safe and preferred - how would you know you were coming back from a result in onStart()

[android-developers] How to use LocationListener without “implements LocationListener”?

2011-09-25 Thread saex
i finally reached an app that get's the GPS position of the user, but i reached it implementing LocationListener. it works fine, but i need to do it without implementing it, because i have to do a class that doesn't implement methods. I searched for a lot of tutorials and check a lot of websites

Re: [android-developers] Regarding XML Parsing issue

2011-09-25 Thread TreKing
On Sun, Sep 25, 2011 at 10:10 AM, sourabh sahu souruit...@gmail.com wrote: I am trying to parse XML file using pull parser. ... but when I parse it it provides some weired output. This has nothing to do with Android and weired output tell no one anything about the problem you're having.

Re: [android-developers] alarms expired popup window at boot time problems

2011-09-25 Thread TreKing
On Sun, Sep 25, 2011 at 10:45 AM, John Goche johngoch...@googlemail.comwrote: 1. How do I reboot the emulator? Close it and reopen it? 2. When I follow the code snippet, as soon as I unlock the device I get the ususal error message that my application has stopped unexpectedly, but then

Re: [android-developers] How to use LocationListener without “implements LocationListener”?

2011-09-25 Thread TreKing
On Sun, Sep 25, 2011 at 12:08 PM, saex elpablos...@gmail.com wrote: i need to do it without implementing it, because i have to do a class that doesn't implement methods. Um ... why? - TreKing

[android-developers] Re: Creating PNG images for app startup, background etc

2011-09-25 Thread Vishal
HI, I am in the same situation. I have been searching for a while and got to know that a SVG (http://en.wikipedia.org/wiki/ Scalable_Vector_Graphics) editor is good to create your logos etc.. I just downloaded Inkscape (free) and am playing around a bit. Hope someone experienced can write more

[android-developers] Re: getting Latitude and Longitude from MyLocationOverlay

2011-09-25 Thread lbendlin
wait for a fix and then use *mlo.getLocation().getLatitudeE6http://code.google.com/android/add-ons/google-apis/reference/com/google/android/maps/GeoPoint.html#getLatitudeE6%28%29 *() etc. -- You received this message because you are subscribed to the Google Groups Android Developers group. To

Re: [android-developers] ACRA clear

2011-09-25 Thread Greg Donald
On Fri, Sep 23, 2011 at 5:37 AM, bob b...@coolgroups.com wrote: What is the easiest way to clear out an ACRA report in Google Docs? I found it was very difficult to use the spreadsheet method. Too many columns, too much scrolling. By the time I would find the column out to the right, I'd

Re: [android-developers] SSL Android

2011-09-25 Thread Greg Donald
That's pretty much what I'm doing. I have a self-signed certificate on this one game I built and this method works fine with that. It doesn't matter who signed your cert (especially these days) so as long as you're hitting an https url. It's the encryption you care about, not the certificate

Re: [android-developers] android and real time

2011-09-25 Thread Greg Donald
Real time kernel is just a kernel with a particular scheduler compiled in. It's not going to make your device faster. It just means jobs get executed differently than with other kernel schedulers. They get a more fair cpu time slice is all. This will actually make long running jobs take longer

[android-developers] Re: java.util.concurrent.RejectedExecutionException

2011-09-25 Thread b0b
You're executing too much AsyncTask concurrently (either by mistake of because they don't terminate) and saturate the ThreadPoolExecutor attached to Async tasks, which is not of infinite size. Look at the javadoc of ThreadPoolExecutor to learn more about RejectedExecutionException. -- You

Re: [android-developers] android and real time

2011-09-25 Thread Kristopher Micinski
Greg gives an appropriate answer, you'll be working at a systems level, not a higher level (dalvik, etc...). To get more insight, although this isn't really an android question as much as a real time linux question, you'd be best to check on the [android-kernel] list, or something else on

[android-developers] Extracting RGB data from Bitmap

2011-09-25 Thread New Developer
Anyone know how to extract the RGB Data only from a bitmap So that is can be placed into a string and thus create a PDF using the inline images q 17 0 0 17 298 298 cm BI /W 17 /H 17 /CS /RGB /BPC 8 ID here is where just the bitmap data goes something like

[android-developers] Re: How to use LocationListener without “implements LocationListener”?

2011-09-25 Thread lbendlin
theoretically you don't need a LocationListener if you want to poll the lastKnownLocation manually, using a passive provider. Yes, someone would then need to enable the GPS on the device, and yes - why? -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: Creating PNG images for app startup, background etc

2011-09-25 Thread lbendlin
you may want to look into 9-Patch PNG images. -- 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

Re: [android-developers] SSL Android

2011-09-25 Thread Nikolay Elenkov
On Fri, Sep 23, 2011 at 1:45 AM, Sivaprakash sivaprakashshanmu...@gmail.com wrote: Hi I want to do a webservice call from my client app (HTTPs), With this following code I am able to connect and get the response successfully but want to know what I am doing is the correct one or not? Could

[android-developers] Re: Listing all top level elements in strings.xml

2011-09-25 Thread jpathak
Hi Kris, Thanks for your response! I was able to use this for discovering members contained in the R.string class. For others who may encounter this problem: Field[] fields = getClassLoader().loadClass(getPackageName() + /R $string).getDeclaredFields(); for(Field field : fields) {

Re: [android-developers] SSL Android

2011-09-25 Thread Nikolay Elenkov
On Mon, Sep 26, 2011 at 5:48 AM, Greg Donald gdon...@gmail.com wrote: That's pretty much what I'm doing.  I have a self-signed certificate on this one game I built and this method works fine with that. If it seems to work, that doesn't mean it's right or secure. It doesn't matter who signed

[android-developers] Re: Block the upgrade

2011-09-25 Thread Perry168
Thanks Chris On 9月22日, 上午3時34分, Chris crehb...@gmail.com wrote: On Wednesday, September 21, 2011 1:07:33 PM UTC-4, TreKing wrote: On Wed, Sep 21, 2011 at 7:47 AM, Perry168 perr...@netvigator.com wrote: How can I block the user to upgrade the Apps if who isn't downloaded from google

[android-developers] Re: Block the upgrade

2011-09-25 Thread Perry168
I don't think the question is no sense if you are concentrated to control the illegal copy. Also illegal copy is affected the imcome. That's samiler why software company need to prevent the illegal copy. When it have a method for developer, who can decide the Apps just can download from android

[android-developers] Re: Saving form data to XML

2011-09-25 Thread gjs
Hi, See http://developer.android.com/reference/android/content/Context.html#getFilesDir() and http://developer.android.com/guide/topics/data/data-storage.html Regards On Sep 23, 7:28 pm, ksmobilejava ksmobilej...@gmail.com wrote: Hello , developing application with form having multiple

Re: [android-developers] SSL Android

2011-09-25 Thread Greg Donald
On Sun, Sep 25, 2011 at 8:28 PM, Nikolay Elenkov nikolay.elen...@gmail.com wrote: This, too, is wrong. While I agree that most CAs add little value, because they hardly do any verification before issuing your $5 cert (you get what you pay for), 'hitting an https url' is not enough. Encryption

Re: [android-developers] SSL Android

2011-09-25 Thread Nikolay Elenkov
On Mon, Sep 26, 2011 at 12:13 PM, Greg Donald gdon...@gmail.com wrote: On Sun, Sep 25, 2011 at 8:28 PM, Nikolay Elenkov nikolay.elen...@gmail.com wrote: This, too, is wrong. While I agree that most CAs add little value, because they hardly do any verification before issuing your $5 cert (you

[android-developers] File.ListRoots

2011-09-25 Thread John
What is the equivalent of Java.IO.File.ListRoots? When I call this function targeting android 3.2 I get one entry with a path /. On this particular device, I was expecting two entries Removable, sdcard, which are the top level items when I use the File Manager. Thanks -- You received this

Re: [android-developers] File.ListRoots

2011-09-25 Thread TreKing
http://developer.android.com/guide/topics/data/data-storage.html - TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago transit tracking app for Android-powered devices -- You

[android-developers] Custom listView design

2011-09-25 Thread Dalton Metzler
How can i make my list view design from this: http://i54.tinypic.com/1674fif/7 to this: http://i54.tinypic.com/2dc66th.png -- 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] Re: File.ListRoots

2011-09-25 Thread John
Thanks, that's a useful link, but it doesn't answer my question. I'm looking for the equivalent Java.IO.ListRoots, which lists the filesystem root volumes. On Sep 25, 8:53 pm, TreKing treking...@gmail.com wrote: http://developer.android.com/guide/topics/data/data-storage.html

[android-developers] Convert this to add a item to listview?

2011-09-25 Thread Dalton Metzler
Okay so i downloaded this database script and i want to convert it to instead add a item to a listview and on load up it will load all those items again heres the source: http://www.anotherandroidblog.com/wp-content/uploads/2010/08/AABDatabase.zip -- You received this message because you are

[android-developers] jni

2011-09-25 Thread sourabh sahu
can anybody explain.how to run a hellojni ssample code. thanks. sourabh -- 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] Re: Android Alarm application

2011-09-25 Thread Hassy
Hi, Thank you for the reply. I found some source codes and articles about android alarm service. I have created the alarm function and now I'm trying to create database(SQLITE) related stuff. Thank you BR Hassy On Sep 16, 1:27 am, Cristhian Flores cif...@gmail.com wrote: Hi Hassy, Don't

[android-developers] Diplay progressbar with text downloading when search button clicked in search dialog just like in market app.

2011-09-25 Thread muhammad mahmood
Dear all, How to display progress bar when search button is clicked in search dialog. For long operations search dialog remains untill search resluts come. I would like to obtain search behaviour just like market app. When you search for an app, an activity appears with progressbar and text

[android-developers] Re: Android Alarm application

2011-09-25 Thread Hassy
I found these source codes.hope it will help http://developer.android.com/intl/ja/resources/samples/ApiDemos/src/com/example/android/apis/app/index.html#Alarm http://code.google.com/p/android-alarm-database/source/browse/trunk/src/com/android/alarmclock/util/AlarmDatabase.java?r=19