[android-developers] how can spotify plays local(downloaded) songs so fast?

2011-05-11 Thread Hitendrasinh Gohil
hi, can anyone tell me how the spotify plays local(downloaded) songs so fast though it is encrypted and with low configuration device it also plays fast.no barrier to play local encrypted song for spotify! I really need some workaround for this? anyone? anyguess? -- You received this message

[android-developers] help with ImageView maxHeight set, but ignored

2011-05-11 Thread Brill Pappin
I've got the maxHeight et on an ImageView but when I set a Bitmap as the source, the ImageView grows in the layout to cover adjacent components. (The image is larger than the View, taken from the camera, but I'm expecting to get scaled). Can anyone give me a hint why that is? - Brill -- You

[android-developers] Re: hash functions

2011-05-11 Thread gjs
Hi, 1st link was to simply show mention of longer bit length SHA algorithms in Android SDK, not how to go about effectively using them, which usually involves 'salt' and other measures as other have discussed here and else where. MD5 (128 bits) is 'weaker' than SHA1 (160 bits) only by virtue of

[android-developers] Re: hash functions

2011-05-11 Thread Brill Pappin
Here you go. This is some old code for a fairly light encryption job. You might want to adjust the algorithm a bit to use at least SHA (also maybe not use DES). I think I'd also make the salt mutable based on a second input, but it really depends on how much you care about protecting what your

Re: [android-developers] Re: hash functions

2011-05-11 Thread Brill Pappin
Nod to Bob on not doing it yourself... there is no reason to do so. There is nothing worse than your masterpiece of unbreakable encryption that only you don't know is full of holes. I've seen some pretty silly things done in the name of extra encryption and it's just not worth your time. --

[android-developers] Re: In a Native C program, how to call java API: ActivityManager::getMemoryInfo()

2011-05-11 Thread FrankG
IMHO instead of dealing via JNI with the ActivityManager I from you native code I would create a java wrapper and your native code only interacts with this wrapper . This allows you to provide an easier interface. Good luck ! Frank BTW : I think this kind of question is out of scope of this

[android-developers] Re: hash functions

2011-05-11 Thread Brill Pappin
Arg, just reread your opost. All you want is a hash (as in a one way hash)? The encryption decryption confused me ;) SHA is likely adequate... simply do a google search for java sha and you'll find a tone of examples on digesting a string... most of them will work in Android. - Brill -- You

[android-developers] Re: directly loading dynamically created classes (in dex format)

2011-05-11 Thread Brill Pappin
Hmm, too bad... be a pretty good way to make things hard on crackers if it worked. Think of a world were your app needed to download a chunk of its code (at least once) encrypted to the user who purchased it. Not impossible to get around, but it would require some serious attention to detail.

[android-developers] Re: hash functions

2011-05-11 Thread Brill Pappin
Ahh... love this little library. See: http://www.jasypt.org/howtoencryptuserpasswords.html - Brill -- 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] Re: Bitmap Distortion

2011-05-11 Thread Sourav Howlader
Hi neuromit, Try this, hope it will solve your problem. Paint mPaint = new Paint(); mPaint.setAntiAlias(true); mPaint.setFilterBitmap(true); mPaint.setDither(true); Regards, Sourav -- You received this message because you are subscribed to the

[android-developers] Why can't I set the device Microphone mute

2011-05-11 Thread Ian Kao@TW
Now I am trying to build a apk which can control the device's hardware. When I try to mute microphone with the AudioManager.muteMicrophone and AudioSystem.muteMicrophone methods. As a result, I can only mute the Microphone in my own apk, when I jump to another apk such as some other recorder, the

[android-developers] Re: Override the Status bar

2011-05-11 Thread Faboom
Is it possible to customize the hneycomb status bar, so that it fits more seamlessly in the overall design of my app? Cheers, Fabian On 15 Mrz., 14:57, Mark Murphy mmur...@commonsware.com wrote: On Tue, Mar 15, 2011 at 8:54 AM, Rahul Garg rahul.lnm...@gmail.com wrote: What do you mean by

[android-developers] requestLocationUpdates ignore minTime parameter?

2011-05-11 Thread Daniel Rindt
Hello droids, i use requestLocationUpdates with values like 1000, 15000 and so on. But i experience that onLocationChanged is called in a smaller timeframe than the given from 15000msecs. The documentation says: minTime - the minimum time interval for notifications, in milliseconds. This field

[android-developers] how to play audio file chunks without interruption?

2011-05-11 Thread Hitendrasinh Gohil
hi, I have a 512kb chunks of mp3 file.i need to play it without interruption and seek should be supported .how can i play number of audio chunks without interruption? regards, hitendrasinh gohil -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] do you know esdn.ws?

2011-05-11 Thread TobyKaos
hello I receive 2 mail of ESDN.ws to integrate my game on facebook market provide by esdn. Do you know it? their website does not respond (404 error). Thank you. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Re: Convert from Polyline to ArrayListLocation

2011-05-11 Thread Felix Garcia Lainez
It is not unrealistic... Imagine i have stored in a database a route in polyline format (in order to optimize storage), and i get that polyline string from a web service. Imagine i want to show it, or do some calculations on Android client... That is the reason to convert from polyline string to

[android-developers] SocketException: Bad file number

2011-05-11 Thread nino
I get a SocketException: Bad file number whenever I try to use a BufferedReader on a HttpResponse. Basically I try to parse my response from the server. The strange thing is, that it only happens on my LG 2x (Android 2.2.2), I don't get this error on the Android Emulator (Google 2.2) and on a HTC

[android-developers] Re: hash functions

2011-05-11 Thread Bob Kerns
No, he thinks he just wants a hash to construct a key from a password. Probably, he just wants to encrypt / decrypt, in which case, your code is mostly adequate, except for a serious flaw, of a constant salt. A constant salt defeats the purpose; you can construct a perfectly fine dictionary of

[android-developers] Re: HttpsURLConnection's getResponseCode() returns -1

2011-05-11 Thread Mika
Hi, I sometimes had similar kind of problems, where one request received the correct responseCode but the second request to the same URL failed with request code -1. After setting http.keepAlive system property to false, everything started to function properly. So maybe you could try adding this

[android-developers] Re: Why can't I set the device Microphone mute

2011-05-11 Thread Mika
Maybe the other application just puts the microphone on again? -Mika On May 11, 10:47 am, Ian Kao@TW ian@gmail.com wrote: Now I am trying to build a apk which can control the device's hardware. When I try to mute microphone with the AudioManager.muteMicrophone and

[android-developers] Re: Adding points automatic

2011-05-11 Thread lbendlin
Read up about polylines. Don't try to fight the API, use it. -- 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: menu item disabled, but clickable

2011-05-11 Thread lbendlin
Why do you show it if it is disabled? Only causes user frustration. -- 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 data storage issue

2011-05-11 Thread boyscout ninja
I have an app which stores data in a SQLite database, when the app is just installed it uses 8kb of data and when I start inserting data obviously the size increases. The weird thing is when I start cleaning my database tables, I empty completely the database but I will never recover the first 8kb

Re: [android-developers] Re: Override the Status bar

2011-05-11 Thread Mark Murphy
There is no status bar on Honeycomb. There is the system bar, on the bottom. This cannot be modified. There is the action bar, on the top. This can be modified somewhat. Whether it can be modified to fit more seamlesslessly in the overall design of [your] app, I cannot say. Mark Murphy

[android-developers] Out of three buttons, one button is not working

2011-05-11 Thread mack2978
Hi All, I am baffling with below issue. Out of three buttons, save button is not working and its onclick is not hitting. Any idea anyone.below code and XML i am using. setContentView(R.layout.myimageview); mImageView = (ImageView) findViewById(R.id.imageview);

[android-developers] Re: Not able to make perticualar pixels in image as transparent

2011-05-11 Thread mack2978
Thanks Bob On May 7, 11:24 pm, Bob Kerns r...@acm.org wrote: Perhaps this example (showing a variety of techniques) will be of assistance: https://groups.google.com/forum/#!search/authormsg:fametest,RtVO9WT4U... Among other things, it uses AvoidXfermode to select magenta pixels to be

Re: [android-developers] Re: menu item disabled, but clickable

2011-05-11 Thread Marcin Orlowski
On 11 May 2011 13:34, lbendlin l...@bendlin.us wrote: Why do you show it if it is disabled? Only causes user frustration. I disagree. Hidding elements may cause even more frustration as it tells nothing at all to the users. This usually is quite confusing by default (where the f*k is that

Re: [android-developers] Out of three buttons, one button is not working

2011-05-11 Thread Marcin Orlowski
On 11 May 2011 14:28, mack2978 smashmah...@gmail.com wrote: android:onClick=selfDestruct Regards, Marcin Orlowski *Tray Agenda http://bit.ly/trayagenda* - keep you daily schedule handy... *Date In Tray* http://bit.ly/dateintraypro - current date at glance... WebnetMobile on *Facebook

[android-developers] Scheduling restart of crashed service

2011-05-11 Thread Pandi
Hi, I am running monkey test with the following command adb shell monkey -v --ignore-timeouts --ignore-crashes --ignore- security-exceptions -s 100 --throttle 500 100. I am getting event log Scheduling restart of crashed service com.android.music/.MediaPlaybackService in 5000ms when i run

[android-developers] Re: menu item disabled, but clickable

2011-05-11 Thread Zanarotti Michele
Ibendlin, sometimes menu items are based on a situation, as money to buy something (think of a game). I want to show to the user what he/she can buy, but make the button inactive because the overall money is not enough. I saw pratically every game/site doing this. Android is graying out the

Re: [android-developers] requestLocationUpdates ignore minTime parameter?

2011-05-11 Thread TreKing
On Wed, May 11, 2011 at 3:34 AM, Daniel Rindt daniel.ri...@googlemail.comwrote: *and actual time between location updates may be greater or lesser than this value* Did you read this part of the documentation you quoted?

Re: [android-developers] Re: menu item disabled, but clickable

2011-05-11 Thread TreKing
On Wed, May 11, 2011 at 8:14 AM, Zanarotti Michele zanarotti.mich...@gmail.com wrote: I want to show to the user what he/she can buy, but make the button inactive because the overall money is not enough. I saw pratically every game/site doing this. Instead of disabling the button, consider

[android-developers] Re: I need portrait only for all screen sizes except xlarge screen size which needs to be landscape only

2011-05-11 Thread Emanuel Moecklin
Hi Dianne One of the main issues I'm having with Android is supporting all major API levels. A lot of problems could be solved easily if I had to support only the newer version but my apps need to run on Android=1.6 (finally decided not to support 1.5 any longer). As much as I appreciate all the

Re: [android-developers] Re: menu item disabled, but clickable

2011-05-11 Thread Marcin Orlowski
On 11 May 2011 15:14, Zanarotti Michele zanarotti.mich...@gmail.com wrote: Ibendlin, sometimes menu items are based on a situation, as money to buy something (think of a game). I want to show to the user what he/she can buy, but make the button inactive because the overall money is not

Re: [android-developers] Re: I need portrait only for all screen sizes except xlarge screen size which needs to be landscape only

2011-05-11 Thread Kostya Vasilyev
11.05.2011 17:24, Emanuel Moecklin пишет: SCREENLAYOUT_SIZE_XLARGE unfortunately isn't supported before Gingerbread so it's either using reflection or my approach (maybe there are other solutions) to_really_ solve Droid's problem (I agree that the nosensor approach is not the right one). Why

[android-developers] Signature and certificate

2011-05-11 Thread Jeje
Hi, How the Android system verify if an application has a correct certificate or signature before this application will be installed and launched ? What are the methods, classes, packages in the source code ? -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: How to Override progress bar message i.e.. 0/100

2011-05-11 Thread Emanuel Moecklin
I guess he is talking about ProgressDialog and not just about ProgressBar. With ProgressDialog the progress text (x% and y/z) can indeed not be changed. The solution is to have - as you suggestr - a custom layout with a ProgressBar widget and TextViews that need to be updated manually. Emanuel

[android-developers] javascript in webview to java?

2011-05-11 Thread Droid
I want to try processing text in a normal java activity from the text output of a javascript library in webview. BUT how? Suppose i could write to a file and then read but that is cumbersome. -- You received this message because you are subscribed to the Google Groups Android Developers group.

Re: [android-developers] javascript in webview to java?

2011-05-11 Thread Kostya Vasilyev
You can make a Java object accessible to JavaScript inside the WebView: http://developer.android.com/reference/android/webkit/WebView.html#addJavascriptInterface(java.lang.Object, java.lang.String) -- Kostya 11.05.2011 18:17, Droid пишет: I want to try processing text in a normal java

[android-developers] Programmatically add contact and start Dialer with some delay

2011-05-11 Thread viktor
Hi, My app create new contact, inserts it into DB, and with little delay(300 - 500 мс) Dialer will start with number of new contact. At first try Dialer shows only a number on the Screen, after second try it shows Full name. This action repeats every time when phone was rebooted. Somebody has

[android-developers] Re: HttpsURLConnection's getResponseCode() returns -1

2011-05-11 Thread John Gaby
Thanks for the tip, that does indeed fix the problem. Can you tell me what the ramifications of setting the keepAlive to false are? Thanks. On May 11, 3:18 am, Mika mika.ristim...@gmail.com wrote: Hi, I sometimes had similar kind of problems, where one request received the correct

[android-developers] Re: I need portrait only for all screen sizes except xlarge screen size which needs to be landscape only

2011-05-11 Thread Emanuel Moecklin
You are right, because the variable is static final I could just use its value 4. If it weren't static final I wouldn't do that even if the docs say Constant Value: 4 (0x0004). On May 11, 9:54 am, Kostya Vasilyev kmans...@gmail.com wrote: 11.05.2011 17:24,EmanuelMoecklinпишет:

[android-developers] Re: Out of three buttons, one button is not working

2011-05-11 Thread mack2978
I removed this still not working On May 11, 5:44 pm, Marcin Orlowski webnet.andr...@gmail.com wrote: On 11 May 2011 14:28, mack2978 smashmah...@gmail.com wrote:   android:onClick=selfDestruct Regards, Marcin Orlowski *Tray Agenda http://bit.ly/trayagenda* - keep you daily schedule

[android-developers] Re: Out of three buttons, one button is not working

2011-05-11 Thread viktor
Is Button selector switches if you push the Button? On 11 Тра, 15:28, mack2978 smashmah...@gmail.com wrote: Hi All, I am baffling with below issue. Out of three buttons, save button is not working and its onclick is not hitting. Any idea anyone.    below code and XML i am using.  

[android-developers] How to launch other installed program in code?

2011-05-11 Thread wilkas
I'm noob, so pls be patient. Trying to launch Opera MiniBrowser from my code. Reffered to these resources on launching other programs: http://markmail.org/message/hztjnsuhv7wnrdkb#query:+page:1+mid:ct7yftkr2twaee3z+state:results ;

[android-developers] Stable Built environment for Nexus S

2011-05-11 Thread Markus
Hello friends, I am looking for a stable built environment to build a custom ROM. BUT all branches I tryed dont work clean in Nexus S. My attemts: repo init -u git://android.git.kernel.org/platform/manifest.git -b android-2.3.3_r1 repo init -u git://android.git.kernel.org/platform/manifest.git

Re: [android-developers] How to launch other installed program in code?

2011-05-11 Thread Kostya Vasilyev
You are trying to refer to Opera's Java class as if it were defined in your application. This is not working because it's not. You can specify the package and class names with the other setClassName, the one that takes two strings. 11.05.2011 19:16 пользователь wilkas wil...@gmail.com написал:

Re: [android-developers] Stable Built environment for Nexus S

2011-05-11 Thread Marcin Orlowski
On 11 May 2011 17:16, Markus markus.tau...@gmail.com wrote: Hello friends, I am looking for a stable built environment to build a custom ROM. BUT all branches I tryed dont work clean in Nexus S. You're on wrong group. android-building or any related to building android (NOT building FOR

[android-developers] Re: Scheduling restart of crashed service

2011-05-11 Thread lbendlin
Why do you let the monkey run against Android itself? You probably want to specify your application package, and prohibit monkey from jumping out of the sandbox. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Re: Out of three buttons, one button is not working

2011-05-11 Thread mack2978
No, it doesn't, I put breakpoint under onclick() but control doesn't come under it. On May 11, 8:14 pm, viktor victor.scherb...@gmail.com wrote: Is Button selector switches if you push the Button? On 11 Тра, 15:28,mack2978smashmah...@gmail.com wrote: Hi All, I am baffling with below

[android-developers] Re: Out of three buttons, one button is not working

2011-05-11 Thread viktor
It's magic, Try to use android:layout_toRightOf=@id/. I guess one of yours button overlapped center button, try to play with layout. On 11 Тра, 18:52, mack2978 smashmah...@gmail.com wrote: No, it doesn't, I put breakpoint under onclick() but control doesn't come under it. On May 11, 8:14 pm,

[android-developers] Query on Programming Model in Recorder

2011-05-11 Thread Ganesh
Dear Experts, From the sources, I observe that the data from Camera is read by the encoder through a PULL model. However, Camera can't generate frames whenever the encoder requires a frame and instead should work on a PUSH model. To ensure the real-time behavior of the system, one would require a

[android-developers] Re: eCarrel: tech eBook reader and bookstore for Android 3.0 tablets

2011-05-11 Thread Bill Michaelson
I was about to try it, but it wants read/write access to personal contacts. On May 10, 9:35 pm, jacek jacek.ambroz...@gmail.com wrote: Just shipped today, a new eReading solution mostly for developers, with bookstore filled by all the latest and greatest O'Reilly titles. You will find lots of

[android-developers] Re: Out of three buttons, one button is not working

2011-05-11 Thread mack2978
Great Viktor...It worked..but still i am clueless why it not worked using layout_alignRight? Anyways thanks.. On May 11, 9:14 pm, viktor victor.scherb...@gmail.com wrote: It's magic, Try to use android:layout_toRightOf=@id/. I guess one of yours button overlapped center button, try to play

[android-developers] Interactions between classes

2011-05-11 Thread Abalufaske
I have 2 class: Class A and Class B The class A has a user interface and class B not The class B has a method that makes an ArrayList and if fills it with data (in the same function) it returns the ArrayList How can i get from Class A that object filled of data? Class B method cannot be static

[android-developers] Password Manager For Ipad and other fPlatforms

2011-05-11 Thread Ezine.sbr23
-- 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

Re: [android-developers] Interactions between classes

2011-05-11 Thread TreKing
On Wed, May 11, 2011 at 12:23 PM, Abalufaske abalufa...@gmail.com wrote: How can i get from Class A that object filled of data? This will vary wildly depending on what your classes actually are (Activities, Services, etc) and how they're actually used. You probably should add more detail and

[android-developers] cracked screen

2011-05-11 Thread bob
I saw this app called cracked screen that basically overlays a bitmap on the screen and makes it look cracked as a joke. Somehow the app continues to put the crack on the screen even as the user continues to use the phone. Anyone know how to do this? -- You received this message because you

[android-developers] Binder thread Migration

2011-05-11 Thread Nitin Mahajan
Hello, While reading through the OpenBinder documentation I came across a statement which said The kernel module emulates a thread migration model by propagating thread priorities across processes as IPCs are dispatched. This means that the priority of the thread executing the IPC in remote

[android-developers] RTSP video stream with authentication

2011-05-11 Thread rohit
Hello Guys, Does the Android supports to play rtsp video feed with initial authentication like in Axis web cam feed? rohit -- 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] good 2d physics engine

2011-05-11 Thread bob
Can anyone recommend a good 2d physics engine for Android? -- 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] good 2d physics engine

2011-05-11 Thread TreKing
On Wed, May 11, 2011 at 1:28 PM, bob b...@coolgroups.com wrote: Can anyone recommend a good 2d physics engine for Android? Always check the Google's first, as this type of question has usually already been asked (and answered) repeatedly. http://tinyurl.com/6cm8mwk

[android-developers] Re: eCarrel: tech eBook reader and bookstore for Android 3.0 tablets

2011-05-11 Thread jacek
eCarrel is a social reader (apart from other features) and you will be able to add Contacts to talk about books and share stuff But... I am with you: this is a scary access right. As an Android developer from the beginning I've given much thought to security issues, perceptions and problems. It

Re: [android-developers] How to launch other installed program in code?

2011-05-11 Thread wilkas
You can specify the package and class names with the other setClassName, the one that takes two strings. I've tried this peace of code: Intent i = new Intent(); i.*setClassName*(com.opera.mini.android, Browser); startActivity(i); But my activity just crashes :/ -- You received this

[android-developers] Re: Interactions between classes

2011-05-11 Thread Abalufaske
class A is extends activity class B only have functions don't extend anything On May 11, 7:33 pm, TreKing treking...@gmail.com wrote: On Wed, May 11, 2011 at 12:23 PM, Abalufaske abalufa...@gmail.com wrote: How can i get from Class A that object filled of data? This will vary wildly

[android-developers] Re: Interactions between classes

2011-05-11 Thread Abalufaske
class B retrieve data of contentProvider and store it in a ArrayList On May 11, 9:21 pm, Abalufaske abalufa...@gmail.com wrote: class A is extends activity class B only have functions don't extend anything On May 11, 7:33 pm, TreKing treking...@gmail.com wrote: On Wed, May 11, 2011

[android-developers] Re: Interactions between classes

2011-05-11 Thread Abalufaske
class B get data of contentprovider and store it in a arraylist On May 11, 9:21 pm, Abalufaske abalufa...@gmail.com wrote: class A is extends activity class B only have functions don't extend anything On May 11, 7:33 pm, TreKing treking...@gmail.com wrote: On Wed, May 11, 2011 at

Re: [android-developers] How to launch other installed program in code?

2011-05-11 Thread Kostya Vasilyev
Try this: i.*/setClassName/*(com.opera.mini.android, com.opera.mini.android.Browser); -- Kostya 11.05.2011 23:14, wilkas ?: You can specify the package and class names with the other setClassName, the one that takes two strings. I've tried this peace of code: Intent i = new

[android-developers] Re: eCarrel: tech eBook reader and bookstore for Android 3.0 tablets

2011-05-11 Thread jacek
I have just checked... I have used code from http://developer.android.com/resources/samples/SampleSyncAdapter/index.html which requires READ_CONTACTS http://developer.android.com/resources/samples/SampleSyncAdapter/AndroidManifest.html I would rather get rid some functionality then to scare

Aw: Re: [android-developers] requestLocationUpdates ignore minTime parameter?

2011-05-11 Thread Daniel Rindt
Ah ok, yes now i got it. Good when english is your native language. :-) Thanks! -- 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

[android-developers] Re: Mapactivity second intent

2011-05-11 Thread ingy abbas
ye !! On May 11, 2:39 am, TreKing treking...@gmail.com wrote: On Tue, May 10, 2011 at 6:48 PM, ingy abbas ingy.abba...@gmail.com wrote: *05-11 02:46:19.843: ERROR/AndroidRuntime(311): java.lang.NoClassDefFoundError: yaraby.y.Mapy* Did you include the class in you manifest?

[android-developers] Re: I need portrait only for all screen sizes except xlarge screen size which needs to be landscape only

2011-05-11 Thread nadam
Actually, it's even simpler. Since it's a static final, the value is built into your apk-file at compile time, so you can use SCREENLAYOUT_SIZE_XLARGE no matter what version the device is running. You can try this for instance using an emulator with Android 1.6 and an app compiled against Android

[android-developers] Re: eCarrel: tech eBook reader and bookstore for Android 3.0 tablets

2011-05-11 Thread jacek
Thanks to Bill's feedback I went into the code and found out that I may safely remove the code that used READ_CONTACTS in fact both READ as well as WRITE_CONTACTS permissions are now gone, which is a good thing, since especially READ_CONTACTS is scary... That said, anybody who will use

[android-developers] Re: How to Get 3G/UMTS Signal Strength Values: HELP PLEASE!

2011-05-11 Thread Ahmed
Hi Aussie, did you ever get an answer to this question? I'm running into the same situation and not sure if I should use getGsmSignalStrength for both GSM and UMTS. Even if this is correct, how about the rscp, ecio, etc. Thank you, Ahmed -- You received this message because you are

[android-developers] Re: SectionIndexer Tweak

2011-05-11 Thread Alex Duhamel
flag() and toggleFlag() are my own functions. Lee - I'm having the same problem. Do you mind sharing your flag() and toggleFlag() functions? Thanks...Alex -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Re: NFC JNI Error on Nexus S

2011-05-11 Thread fordeveloper
Ya, am having the same issue with one particular card everytime. The transcieve fails, and the nfc polling restarts everytime. On Apr 20, 1:25 pm, Myroslav Bachynskyi bachyns...@gmail.com wrote: 04-16 15:46:22.809: INFO/ActivityManager(118): Starting: Intent { act=android.intent.action.MAIN

[android-developers] Re: emulator too slow

2011-05-11 Thread Eamonn Dunne
Not really, its a known issue, the Google IO talks mentioned they are working on it. -- 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,

Re: [android-developers] good 2d physics engine

2011-05-11 Thread Kristopher Micinski
The problem with this is that inevitably whenever someone does this their thread appears as the first link soon after... Kris On Wed, May 11, 2011 at 2:57 PM, TreKing treking...@gmail.com wrote: On Wed, May 11, 2011 at 1:28 PM, bob b...@coolgroups.com wrote: Can anyone recommend a good 2d

[android-developers] Re: hash functions

2011-05-11 Thread DanH
Salt doesn't prevent dictionary attacks at all. If I know that the password is an 6-character alpha then I can try all combos of that, dictionary or otherwise, regardless of how salted the encryption is. I've seen iteration add considerable overhead. In one SqlCipher implementation iteration

[android-developers] Boot Camp: Mobile Application Development

2011-05-11 Thread vix
For the first time in NCR region!! A golden opportunity to ride the next wave of Mobile Application Development! Come learn about the rapidly growing Mobile Applet Industry from the industry insiders. What? iPhone-Android: What lies beneath? Live interaction with industry experts Live

[android-developers] C Sharp Basics

2011-05-11 Thread ANUJ BATTA
To know more about C Sharp Basics with Examples in very easy way then please visit: http://csharpexpress.blogspot.com/ -- 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] android.view.WindowManager$BadTokenException

2011-05-11 Thread homefire
Hi When I try to make PopupWindow at onCreate(), the BadTokenException is thrown. If there is some delays when make PopupWindow, the Exception does not occur. But It doesn't seem a good solution. How can I make PopupWindow at onCreate() without Exception? 05-09 21:36:09.820:

[android-developers] Segmentation fault when loading a certain class from an OSGi framework under Android 2.2 2.3

2011-05-11 Thread Sierra
Hello, ... I'm afraid that asking in this group might be the last change to get an idea how to solve the problem I'm currently facing - I have not found any solution when searching the web... :-( I face the following problem: I try to develop an application in an OSGi framework under Android

[android-developers] RatingBar

2011-05-11 Thread neha
How can i resize size of stars in RatingBar?? -- 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] GPS

2011-05-11 Thread Innocent
Hi guys I'm working on a project and my GPS on the emulator am using doesn't seem to function!! WHEN I try to run a simple program to show my location it does not get the location!! Could some one please help! -- You received this message because you are subscribed to the Google Groups

[android-developers] Mixing of voice

2011-05-11 Thread neha
I want to record and play audio simultaneously.And the saved audio should be mixer of recorded and played audio. Can anyone suggest me how can i achieve this. -- 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 enable Proguard obfuscation protection within Eclipse IDE 3.6.2 for Android App

2011-05-11 Thread stupid_coder
I looked at the documentation for ProGuard on Android Developer's section at developer.android.com and it basically said that Proguard obfuscation is done once you chose to Build the Project in Release mode So I looked at the menu options in Eclipse IDE and noticed a default.properties file where

[android-developers] Re: Phone crash on volume key

2011-05-11 Thread Pierluigi
Hello, I've the same issue using SoundPool: *E/AudioFlinger( 7762): no more track names available* *E/AudioTrack( 7838): AudioFlinger could not create track, status: -12* *E/SoundPool( 7838): Error creating AudioTrack* I play short sounds several times and after a while I loose the sounds, than

[android-developers] Re: Not able to find adb.exe

2011-05-11 Thread Denys
Hi Yogi, Your version of Eclipse is not officially supported by ADT plugin, however you still able to install it there: Here is the extract from the ADT 10.0.1 release notes: Fix issue in which ADT 10.0.0 would install on Eclipse 3.4 and lower, even though ADT requires Eclipse 3.5 or higher (as

Re: [android-developers] Not able to find adb.exe

2011-05-11 Thread
Tax -- Sent via Nokia Email --Original message-- From: yogesh yogeshlanje...@gmail.com To: Android Developers android-developers@googlegroups.com Date: Sunday, May 8, 2011 6:54:35 AM GMT-0700 Subject: [android-developers] Not able to find adb.exe Hi all, I am new to Android. I

[android-developers] in app billing: PURCHASE_STATE_CHANGED sends empty orders

2011-05-11 Thread Uwe Post
Dear list, in 5-10% of all purchases, my BillingReceiver (basically taken from the dungeons sample) gets a PURCHASE_STATE_CHANGED notification with empty orders list: 05-08 17:15:17.294 D/BillingReceiver(13171)purchaseStateChanged: {nonce:4596323482244846986,orders:[]} The BillingService does

[android-developers] Android Start up

2011-05-11 Thread LiTTle
Hi everyone, I am new in android development. I am coming from J2ME. I am trying to build my first Android application. The application is Hello World as it is described at Google's guidelines. I use Eclipse Editor to create the application and I followed the steps as Pro Android 2 said. The

[android-developers] Loading external images into android application

2011-05-11 Thread surya tej
Hi All, I am developing an application which need to load images from android file system . I could not load the images in this manner.Kindly help me. Thanks in advance -- Thanks Regards, Suryatej, 9247714040. Please Save paper, Save trees. Please don't print this email and documents

[android-developers] android jsoup

2011-05-11 Thread bonn-i
hello all I want to extract data from a website which includes some javascript content and relay it to my app..is there anyone with clear help to assist me on this? i already have the jsoup jar file in my library thanks -- You received this message because you are subscribed to the Google Groups

[android-developers] System Administrator with Active Directory, AZ

2011-05-11 Thread junaid alam
Hello, Hope you are doing well!! I have an urgent requirement with one of my client . If you are comfortable with the following requirement then please send me your updated resume along with contact details ASAP. Active Directory Location: Tempe, AZ Duration: 4 Months Requirements: - 5+ years

[android-developers] Sams Teach Yourself Android... Layout difficulty

2011-05-11 Thread Sprouter
Hi, I'm new to Android. I'm onto chapter 8 of the Sams Teach Yourself Android Application Development in 24 Hours and am having a difficulty. There are several layouts including splash defined by splash.xml and menu defined by menu.xml. I have a ListView control named Listview_Menu defined in

[android-developers] help with scrollto

2011-05-11 Thread owengerig
as you can see from the code below all im trying todo is load a webpage then have it auto scroll to a part of that page. u can see in the first button i've tried just calling scrollTo directly on the webview but that doesnt work. as well as implementing a subclass that extends the webviewclient.

[android-developers] Background Task Running Implementation.

2011-05-11 Thread Goutham P N
Hi All, I have timings for some schedules in the database and I need to notify user based on that timings and this timings are 100+. Can you help me out how to implement this. Thanks Regards. -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Develop apps on-the-fly?

2011-05-11 Thread keksinen
Hey there, I'm wondering whether I should move to developing android apps. As I know next to nothing on android, I'd like to know if there is a way to do the developing on an actual android device, or whether I'd be necessary to get a SDK on an external machine as it seems to be done. So again:

[android-developers] Post Documentation corrections?

2011-05-11 Thread Yousry Abdallah
Is it possible to report (respectively update) outdated or erroneous documentation entries? For example the entry http://developer.android.com/reference/android/graphics/drawable/AnimationDrawable.html references a faulty XML document. I would also like to add the restriction that an animation

  1   2   3   >