[android-developers] ADT error

2011-10-22 Thread bob
I'm getting the following error when I start Eclipse: This Android SDK requires Android Developer Toolkit version 14.0.0 or above Current version is 12.0.0.v201106281929-138431. Please update ADT to the latest version. I did a 'Check for Updates' in Eclipse, and it says none are available. Any

[android-developers] How to play .asx streams in Android ?

2011-10-22 Thread KK
Hi All, Just wondering, is there any way we can play .asx streams on Android. I was searching on google, but could not find any positive answers over there. Is there any third party utility through which we can play this kind of streams on android phones? Appreciate your time. Thanks, KK --

[android-developers] /sdcard

2011-10-22 Thread bob
So, I'm trying to load a 3d model with this thing: http://sourceforge.net/projects/objloaderforand/ Of course, it crashes. I found out, it's because of this line in the demo: model=parser.parseOBJ(/sdcard/windmill.obj); Can someone tell me how to put a file in my /sdcard dir so I can try this

[android-developers] Re: Regarding Call Intent

2011-10-22 Thread Anieeh
Hi Nageswara i hope i am getting your point of problem. Its very simple just call this intent and start an activity Intent callIntent = new Intent(Intent.ACTION_CALL); callIntent.setData(Uri.parse(tel:*Your Tel ph. No*));

[android-developers] Re: How to get the brand and name of the device

2011-10-22 Thread MobileVisuals
I can unfortunally not use Build.Model, because it returns GT-I900 on my Galaxy S.I can't get access to Build.MANUFACTURER. I get MANUFACTURER cannot be resolved or is not a field On Oct 21, 9:26 pm, lbendlin l...@bendlin.us wrote: on the Nexus One Build.MANUFACTURER returns HTC. You should

[android-developers] Re: How to get the brand and name of the device

2011-10-22 Thread MobileVisuals
I meant that I can't get access to Build.MANUFACTURER. I get MANUFACTURER cannot be resolved or is not a field I have the latest Eclipse IDE with the latest Android installed.This is very strange, you can use Build.MANUFACTURER, but I don't have access to it. I see your point, but I can't have a

[android-developers] Re: Is it possible to advertise payed apps on Android market?

2011-10-22 Thread MobileVisuals
I asked them about it and I waiting for their reply. Do you also want to advertise payed apps? On Oct 21, 7:35 pm, TreKing treking...@gmail.com wrote: On Fri, Oct 21, 2011 at 12:26 PM, MobileVisuals eyv...@astralvisuals.comwrote: It seems that it is not possible to advertise the payed apps

Re: [android-developers] Re: How to get the brand and name of the device

2011-10-22 Thread Kostya Vasilyev
Build.MANUFACTURER is available starting with API level 4 (Android 1.6), so check your build settings. 22.10.2011 12:14, MobileVisuals пишет: I meant that I can't get access to Build.MANUFACTURER. I get MANUFACTURER cannot be resolved or is not a field I have the latest Eclipse IDE with the

[android-developers] video publishing

2011-10-22 Thread mohana priya
I am new to video publish in android.I need the code to publish the video in server using android (rtmp) .Please tell the solution.Thanks in advance. -- 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] Problem with custom Date picker

2011-10-22 Thread vani reddy
Hi friends , I am trying to customize the date picker in android to look like the iphone using Wheel Demo example which ifound while searching in google, The problem is when i try to get the selected item in the picker , it returns a date which is 2 days ahead of the selected date. How to

[android-developers] Re: text color of a ListView

2011-10-22 Thread Ali Chousein
The approach suggested by Jeremy should work but android:textColor should be in a TextView.../TextView AFAIK. Or when you populate your list and access your TextViews, programmatically change the color by calling setTextColor(int). If it still doesn't work, try different colors, maybe

Re: [android-developers] listview problem

2011-10-22 Thread vani reddy
Hi, Then how do i resolve this, i used onFocusChangedListener also, its not working. It is showing the same list in both the views On Fri, Oct 21, 2011 at 1:11 AM, TreKing treking...@gmail.com wrote: The fact that you're doing this twice might be a problem: *edit1.setOnTouchListener(new

[android-developers] plz help....

2011-10-22 Thread Divyata Panchal
how to block any contact number from contact list? -- 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] listview problem

2011-10-22 Thread vani reddy
Thanks i got it :) On Sat, Oct 22, 2011 at 3:01 PM, vani reddy vani.reddy.bl...@gmail.comwrote: Hi, Then how do i resolve this, i used onFocusChangedListener also, its not working. It is showing the same list in both the views On Fri, Oct 21, 2011 at 1:11 AM, TreKing treking...@gmail.com

Re: [android-developers] plz help....

2011-10-22 Thread RAJU V
having some apps to block ~~RAJU~~ ~~www.itdoall.co.cc~~ On Sat, Oct 22, 2011 at 3:04 PM, Divyata Panchal panchal.divyat...@gmail.com wrote: how to block any contact number from contact list? -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: Android Emulator internet connectivity Problem

2011-10-22 Thread Ali Chousein
uses-permission android:name=android.permission.INTERNET/ is necessary in your AndroidManifest.xml only when your own application uses internet. It has nothing to do with the Internet connectivity of the emulator. If the emulator does not have Internet connectivity then probably something is wrong

[android-developers] Re: is it possible to send notification from a running service?

2011-10-22 Thread Ali Chousein
The problem might be in if(res==1) Try using if (res.equals(1)) instead. - Ali Chousein Weather-Buddy http://weatherbuddy.blogspot.com/ | http://twitter.com/weather_buddy Geo-Filtered Assistant http://geo-filtered-assistant.blogspot.com/ -- You

[android-developers] dex

2011-10-22 Thread bob
Can someone help me understand this? [2011-10-22 02:50:44 - Dex Loader] Unable to execute dex: Multiple dex files define La; It happens when I try to build my .apk for Android Market. -- You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] Re: Cannot compile Compatibility Lib sample?

2011-10-22 Thread Zsolt Vasvari
As expected, the compiled V4 sample doesn't run on Android 1.6. It gets a VerifyError on DatabaseUtils.appendSelectionArgs() which was introduced in Level 11. Just to build it, I had to compile against Level 14 -- anything 14 gives an AAPT errror. On Oct 21, 8:24 pm, Mark Murphy

[android-developers] Re: sqlite help

2011-10-22 Thread philgiese
Erik, also if you don't want to struggle with the whole SQL thing, you might have a look at my framework androrm (www.androrm.com). I think this one could ease the whole add/remove process and help you getting things done much faster :) Phil On Oct 21, 8:28 pm, erik wagner

[android-developers] Re: plz help....

2011-10-22 Thread Divyata Panchal
i dont want to block any apps. i want to block incoming call by particular contact number so if person can call me he/she wont be able to call. just like black list and white list. On Oct 22, 2:35 pm, RAJU V kathiriraj...@gmail.com wrote: having some apps to block ~~RAJU~~

Re: [android-developers] Re: How to get the brand and name of the device

2011-10-22 Thread Mark Murphy
On Sat, Oct 22, 2011 at 4:14 AM, MobileVisuals eyv...@astralvisuals.com wrote: Samsung supports point attenuation. It is HTC,Huawei and SE who don't support it. This may be a flawed assessment. The most you can say is that some/many/most/all of the current devices with current firmware from

Re: [android-developers] Re: setOnClickListener Problems Crashing Application

2011-10-22 Thread Mark Murphy
Presumably, you do not have a widget with ID R.id.login_btn_submit. Or, you do, but you need to clean your project (Project | Clean from the Eclipse main menu, or ant clean from the command line). On Fri, Oct 21, 2011 at 10:10 PM, Matt Clark mrclark32...@gmail.com wrote:

[android-developers] Download link android 2.2 ?

2011-10-22 Thread MN Mojo
HI All, I am new to android. I go to android.com website and try to search for the download link for android 2.2 that is SDK. But for all the options 2.3, 4.0 or 2.1 i think i am redirected to the same link with the donwload files named android-sdk_r14-windows.zip/ installer_r14-windows.exe How

Re: [android-developers] Download link android 2.2 ?

2011-10-22 Thread Mark Murphy
That installer is for all versions: http://developer.android.com/sdk/installing.html On Sat, Oct 22, 2011 at 6:47 AM, MN Mojo avayam...@gmail.com wrote: HI All, I am new to android. I go to android.com website and try to search for the download link for android 2.2 that is SDK. But for all

[android-developers] Re: HTC and LG haven't implemented Android in the right way

2011-10-22 Thread Nightwolf
Did you get a sample project I sent you earlier? It uses point sprites and has no black squares around particles. On 21 окт, 15:20, MobileVisuals eyv...@astralvisuals.com wrote: I solved this problem now for the morphed animation. I used a TreSet for the sorting. I made a Quad class and and

[android-developers] Re: Two emulators communicate via Http

2011-10-22 Thread lbendlin
you should be able to run two emulators on the same PC. They should have separate local IP addresses and should be able to communicate. But as I said before there is absolutely NO guarantee that this will work in real life. Most likely you will need a connection broker that negotiates

[android-developers] StackOverflowError in listview android

2011-10-22 Thread vani reddy
Hi friends, I am getting the below error when i scroll in the listview in android ERROR/AndroidRuntime(840): java.lang.StackOverflowError. How to resolve this issue. -- Regards, Vani Reddy -- You received this message because you are subscribed to the Google Groups Android Developers

Re: [android-developers] StackOverflowError in listview android

2011-10-22 Thread Mark Murphy
Paste more of your stack trace, please. 20 or so lines of it should suffice. On Sat, Oct 22, 2011 at 7:22 AM, vani reddy vani.reddy.bl...@gmail.com wrote: Hi friends, I am getting  the  below error when i scroll in the listview in android  ERROR/AndroidRuntime(840):

[android-developers] How to fire an intent onclick of link in textview

2011-10-22 Thread Manikandan M
Hi all, I have a textview that contains link(a) how to fire an intent onclick of the link in textview. Example Data for TextView : this is test string my phone number is 1234567890 a href (contact name)/a. Then how i fire the intent to show the contact list onclick of the link : Final String

Re: [android-developers] How to fire an intent onclick of link in textview

2011-10-22 Thread Mark Murphy
Easiest: use android:autoLink on TextView (or subclases) Slightly harder: use android.text.util.Linkify On Sat, Oct 22, 2011 at 7:54 AM, Manikandan M c2dmdevelo...@gmail.com wrote: Hi all, I have a textview that contains link(a) how to fire an intent onclick of the link in textview.

[android-developers] freedom of humankind

2011-10-22 Thread mostafa dia
Freedom of Humankind I am a Stalker warrior and a believer in the Universal Love of our Lord Jesus Christ and the Divine Justice of our beloved prophets Moses and Mohammad and the Universal Wisdom of the Holly Beings the Buddha and Confucius and a follower of the Teachings of

Re: [android-developers] How to fire an intent onclick of link in textview

2011-10-22 Thread Manikandan M
Hi Mark, Thanks for the reply, Already the textview is autoLinked(android:autoLink) it identifies the phone,email,web wherever it contains. all these three are predefined links 1. if its phone number onclick it opens the dailer 2. if its web address it opens the browser. 3. if its email then it

Re: [android-developers] How to fire an intent onclick of link in textview

2011-10-22 Thread Mark Murphy
Use Linkify. On Sat, Oct 22, 2011 at 8:26 AM, Manikandan M c2dmdevelo...@gmail.com wrote: Hi Mark, Thanks for the reply, Already the textview is autoLinked(android:autoLink) it identifies the phone,email,web wherever it contains. all these three are predefined links 1. if its phone number

[android-developers] Android Qualcomm AR

2011-10-22 Thread giles ian
Hi Guys, I am working on an QCAR app. I have managed to change change the Market and overlay a custom 3d Model . But im struggling to find a simple example which handles a Tap event on that 3d Model. Any help ? Thanks -- You received this message because you are subscribed to the Google

[android-developers] use buy my app at google market caused error.

2011-10-22 Thread a a
Hi, Is there anyone can tell me why my app at google market cause following error after user brought it. Cancellation requested from phone? The failed rate is very height, about 50%. Thank you very much. -- You received this message because you are subscribed to the Google Groups Android

Re: [android-developers] StackOverflowError in listview android

2011-10-22 Thread vani reddy
-- 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] issues with height of sliding drawer in android

2011-10-22 Thread vani reddy
Hi friends, I am naturally control the height of sliding drawer in android -- Regards, Vani Reddy -- 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

Re: [android-developers] StackOverflowError in listview android

2011-10-22 Thread vani reddy
Thanks Mark , now its working.. On Sat, Oct 22, 2011 at 6:37 PM, vani reddy vani.reddy.bl...@gmail.comwrote: -- 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] Re: How to get the brand and name of the device

2011-10-22 Thread MobileVisuals
Yes, you are right it is more complicated than that it works on all other devices than HTC and SE. But it seems from the comments from the users on my wallpaper Morphing galaxy that point attentuation don't work on any HTC devices. I removed SE and HTC devices from the compatibility list now and I

Re: [android-developers] dex

2011-10-22 Thread Kristopher Micinski
Are you running proguard on your source? Not that it matters, but this error indicates that multiple files are defining the class La; (I think there is something standard that proguard renames to this..). Rebuild your project in eclipse and that should work. Kris On Sat, Oct 22, 2011 at 6:00

Re: [android-developers] Re: How to get the brand and name of the device

2011-10-22 Thread Mark Murphy
On Sat, Oct 22, 2011 at 9:35 AM, MobileVisuals eyv...@astralvisuals.com wrote: You suggested 3 strategies. The first one seemed to be the best strategy for  me , but is there a way to change the Android Market settings to control which device gets which APK? I find no way of uploading

[android-developers] Facebook SDK error

2011-10-22 Thread ndiiie 90
Hi guys, i implement facebook sdk in my app and just follow the tutorial. When i call other activity, let's say: the activity that i implement facebook sdk is activity A, from there i can call other activity which is B. From B, i press back button, then it goes back to A. But it returns error:

[android-developers] AutoHide MediaPlayer SeekBar

2011-10-22 Thread Milad khajavi
Hi all, I have a WebView and SeekBaar in Activity, How can I auto-hide SeekBar when user is reading the WebView? -- Milad Khajavi http://lincafe.wordpress.com Having the source means you can do it yourself. I tried to change the world, but I couldn’t find the source code. -- You received

[android-developers] Re: Facebook SDK error

2011-10-22 Thread Studio LFP
It looks like you are starting Activity B with startActivityForResult. Are you trying to receive some information back into Activity A from Activity B? If not, you just want to use startActivity instead. Steven Studio LFP http://www.studio-lfp.com On Saturday, October 22, 2011 9:36:10 AM

Re: [android-developers] Re: plz help....

2011-10-22 Thread Jim Graham
On Sat, Oct 22, 2011 at 03:25:16AM -0700, Divyata Panchal wrote: i dont want to block any apps. i want to block incoming call by particular contact number so if person can call me he/she wont be able to call. just like black list and white list. If you're trying to write an app to do this, I

[android-developers] Multiple ContentProviders per SyncAdapter?

2011-10-22 Thread Jay
Can one SyncAdapter service morethan one ContentProvider? Presumably the SyncManager hands onPerformSync a ContentProviderClient based on the CP declared in the sync-adapter XML metadata. Can onPerformSync just use acquireContentContentProviderClient() to get a client to interact with other CPs it

[android-developers] Implement an XML-RPC server on Android

2011-10-22 Thread Weikang Wan
We know that we can iimplement an XML-RPC client on Android. I am wondering if there is a way to implement an XML-RPC server on Android. Thanks. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Implement an XML-RPC server on Android

2011-10-22 Thread Mark Murphy
Sure, if you can find yourself a Java Web server and a complementary XML-RPC server-side handler. Whether this makes a lick of sense, considering that having open ports on a mobile device got HTC in a lot of hot water recently, is another matter entirely. On Sat, Oct 22, 2011 at 11:31 AM,

[android-developers] Re: Facebook SDK error

2011-10-22 Thread ndiiie90
hmm not really.. actually the error is only about when i press back button from activity B, it returns to activity A (where i implement the facebook sdk) but the facebook sdk returns error about nullPointerException since the startActivityForResult has no data for it parameters. how can i solve

Re: [android-developers] Re: Facebook SDK error

2011-10-22 Thread Appaholics
If you are not passing any parameters back then Activity A will receive one or more null values, hence causing an NPE. Try passing back RESULT_OK. Thanks On Sat, Oct 22, 2011 at 9:05 PM, ndiiie90 rnd...@gmail.com wrote: hmm not really.. actually the error is only about when i press back

[android-developers] Re: trying to get the opengl-es10 tutorial to work

2011-10-22 Thread netskink
Got it. Need to add this code // Draw the triangle gl.glColor4f(0.63671875f, 0.76953125f, 0.22265625f, 0.0f); // red, blue, green, alpha (android green) gl.glVertexPointer(3, GL10.GL_FLOAT, 0, triangleVB); // size, type, stride, pointere

[android-developers] Re: Facebook SDK error

2011-10-22 Thread Studio LFP
If you are not wanting to return info to Activity A from Activity B, just use startActivity() in Activity A instead of startActivityForResult(). If you use startActivityForResult() to launch Activity B from Activity A, Activity A expects Activity B to send information back when it closes. You'd

[android-developers] Re: Implement an XML-RPC server on Android

2011-10-22 Thread skink
On Oct 22, 5:31 pm, Weikang Wan weikang@gmail.com wrote: We know that we can iimplement an XML-RPC client on Android. I am wondering if there is a way to implement an XML-RPC server on Android. Thanks. Hi, See client server library I created some time ago:

Re: [android-developers] Re: Facebook SDK error

2011-10-22 Thread Kostya Vasilyev
Assuming test.test.Test is your activity, the code crashes inside Test.onActivityResult at line 507 in Test.java. 10-22 21:33:23.445: ERROR/AndroidRuntime(538): Caused by: java.lang.NullPointerException 10-22 21:33:23.445: ERROR/AndroidRuntime(538): at

Re: [android-developers] use buy my app at google market caused error.

2011-10-22 Thread Kostya Vasilyev
It probably means that 50% of those buying your application request a refund within the 15 minute window allowed by Market. -- Kostya 22.10.2011 17:06, a a ?: Hi, Is there anyone can tell me why my app at google market cause following error after user brought it. Cancellation requested

Re: [android-developers] Re: Cannot compile Compatibility Lib sample?

2011-10-22 Thread Kostya Vasilyev
Sounds like some code in the compat library should be using reflection to call late version APIs and isn't (or perhaps it should contain a copy of this method - it sounds quite trivial to me). 22.10.2011 14:13, Zsolt Vasvari пишет: As expected, the compiled V4 sample doesn't run on Android

[android-developers] Re: dex

2011-10-22 Thread bob
I honestly don't know if it's using ProGuard. How do I tell? There was a proguard.cfg file in the project. I deleted it, but the problem is still there. On Oct 22, 6:54 am, Kristopher Micinski krismicin...@gmail.com wrote: Are you running proguard on your source?  Not that it matters, but

[android-developers] Custom Dialog Not Showing

2011-10-22 Thread Alex Oh
I've read the google docs on Dialogs and posts here and on Stack Overflow, but I just can't get my dialog to show. showDialog( DIALOG_CREATEPC ); // called elsewhere private Dialog addPCDialog() { Dialog dialog = new Dialog( this ); dialog.setContentView( R.layout.party_createpc );

Re: [android-developers] Custom Dialog Not Showing

2011-10-22 Thread Christopher Van Kirk
Did you override the prepareDialog method as well? On 10/23/2011 1:30 AM, Alex Oh wrote: I've read the google docs on Dialogs and posts here and on Stack Overflow, but I just can't get my dialog to show. showDialog( DIALOG_CREATEPC ); // called elsewhere private Dialog addPCDialog() {

[android-developers] Re: Custom Dialog Not Showing

2011-10-22 Thread Alex Oh
No, I haven't. It seems that onPrepareDialog is used when you want the property of a dialog to be changed when opened again. If I do override it, is there anything that I need to do in onPrepareDialog that I haven't done in onCreateDialog? On Oct 22, 10:37 am, Christopher Van Kirk

Re: [android-developers] Re: Is it possible to advertise payed apps on Android market?

2011-10-22 Thread TreKing
On Sat, Oct 22, 2011 at 3:16 AM, MobileVisuals eyv...@astralvisuals.comwrote: I asked them about it and I waiting for their reply. Do you also want to advertise payed apps? Not immediately, but it would be nice to have the option or at least understand why this isn't possible. When this

[android-developers] Re: SDK 4, if I select WXGA resolution, emulator doesn't start.

2011-10-22 Thread sblantipodi
is there a way to develop on ICS at the moment? On Oct 20, 3:14 pm, Emilio ecdpa...@gmail.com wrote: I've tried everything I found on the web, even reinstalling ADT, and nothing happens: the emulator doesn't boot, for any target, not only 14. On Oct 20, 10:17 am, Mark Murphy

[android-developers] Android 2.x bidi support for Persian/Arabic font

2011-10-22 Thread Milad khajavi
Hi all, Is there any way to implement built-in Bidi Support in out applications? Any one know how to provide Right-To-Left support in Android 2.x? -- Milad Khajavi http://lincafe.wordpress.com Having the source means you can do it yourself. I tried to change the world, but I couldn’t find

Re: [android-developers] Landscape Right (reverseLandscape) prior to API level 9

2011-10-22 Thread Stefan Alder
Dianne, You mentioned checking the android.os.BUILD and setting the orientation to reverse landscape only if it meet or exceeds api level 9. I assume I would do this in onCreate. If I do do this, there are no animations to a new Activity (the slide in), only animations when ending the new

Re: [android-developers] Custom Dialog Not Showing

2011-10-22 Thread TreKing
On Sat, Oct 22, 2011 at 12:30 PM, Alex Oh alexo...@gmail.com wrote: Am I missing something here? Have you stepped through the code and / or printed log statements to verify all of your code is executing as expected?

[android-developers] Re: Getting GlobalTime App to run.

2011-10-22 Thread joebowbeer
AndroidGlobalTime was the subject of an early android-developers blog entry, where it was described as a 3D world clock developed by an engineer at Google and may serve as an illustrative example of how to use the OpenGL ES APIs in your Android applications.

[android-developers] Re: Can not find the address on the map in a real device (mobile phone)

2011-10-22 Thread Andrei
I too was surprised. Tested on Samsung Galaxy Ace (with firmware by default), then tested on another phone also Samsung Galaxy Ace (with firmware by default) everything works. Apparently the problem of a phone On 21 окт, 16:01, Ali Chousein ali.chous...@gmail.com wrote: Just a wild guess; maybe

[android-developers] Re: Tracking issues in r14

2011-10-22 Thread joebowbeer
I created an issue for the problem I encountered with unit testing library projects: http://code.google.com/p/android/issues/detail?id=21108 A possibly related issue: Unit testing with sdk tools r14? http://groups.google.com/group/android-developers/browse_thread/thread/43380b35b0429b0d Can

[android-developers] Re: Testing a Library Project with SDK Tools r14

2011-10-22 Thread joebowbeer
Reported as: http://code.google.com/p/android/issues/detail?id=21108 On Oct 21, 12:30 am, joebowbeer joe.bowb...@gmail.com wrote: I can't figure out how to test my library project using the r14 tools. I'm using the self-contained project method described at the bottom of Managing Projects

Re: [android-developers] Native activity and Intents

2011-10-22 Thread TreKing
On Fri, Oct 21, 2011 at 1:07 PM, chris cnuern...@gmail.com wrote: I am brand new to Android development so if I missed anything please point me to documentation where I can get up to speed. Try the NDK group.

[android-developers] GPS Location

2011-10-22 Thread Goutom
Hi I have no internet connection.I want ot get Gps location point using gps.Is it possible ? Something like this. Location location = Get_Last_location(); I am using the folloing providers: LocationManager.NETWORK_PROVIDER LocationManager.GPS_PROVIDER but no internet connection. Thanks in

[android-developers] Re: Custom Dialog Not Showing

2011-10-22 Thread Alex Oh
Yes. There are no crashes at all from after showDialog, switch statements are being executed correctly, etc. dialog within onCreateDialog is being assigned an id, not null. On Oct 22, 12:33 pm, TreKing treking...@gmail.com wrote: On Sat, Oct 22, 2011 at 12:30 PM, Alex Oh alexo...@gmail.com

[android-developers] What is Desktop backup password in ICS Dev menu?

2011-10-22 Thread Artem Russakovskii
What exactly is that for? Is it for snapshots that the AVD Manager creates? Is it for actually backing up your phone to your desktop? Reference: http://www.reddit.com/r/androiddev/comments/llehh/every_android_developer_should_do_this_android/ Picture: http://i.imgur.com/yN4cc.png Thank you.

[android-developers] surfaceChanged reporting incorrect sizes (since latest SDK r14?)

2011-10-22 Thread Ecthelion
Hi, in my game I am checking the size of the SurfaceView in the surfaceChanged method. Now with the latest SDK for Android 4.0 the emulator reports incorrect size values, e.g. it reports 1280 x 720 pixels for a device with HVGA screen, where it should list 480x320 pixels, and 1425 x 720 pixels

Re: [android-developers] Re: Custom Dialog Not Showing

2011-10-22 Thread TreKing
On Sat, Oct 22, 2011 at 4:57 PM, Alex Oh alexo...@gmail.com wrote: Yes. There are no crashes at all from after showDialog, switch statements are being executed correctly, etc. dialog within onCreateDialog is being assigned an id, not null. And nothing at all in the LogCat? Barring that, try

[android-developers] show me the money

2011-10-22 Thread bob
Is there a real easy way for me to see exactly how much money I've cleared with Android sales for the year? Ideally, I'd like to just go to a single page and see this number. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Re: What is Desktop backup password in ICS Dev menu?

2011-10-22 Thread Peter Sinnott
I asked the same question in android discuss and got no answers. The fact it is in the dev menu probably means it isn't too interesting. On Oct 22, 11:05 pm, Artem Russakovskii archon...@gmail.com wrote: What exactly is that for? Is it for snapshots that the AVD Manager creates? Is it for

[android-developers] Re: Native activity and Intents

2011-10-22 Thread chrisn
This post was posted there in January with no response. http://groups.google.com/group/android-ndk/browse_thread/thread/9bbb446609ec31b1/2097f2489a40910c?lnk=gstq=native+activity+intent#2097f2489a40910c So I am trying that group but my hopes aren't high. Chris On Oct 22, 2:45 pm, TreKing

Re: [android-developers] updating new notification

2011-10-22 Thread TreKing
On Fri, Oct 21, 2011 at 4:18 AM, ritu rits3...@gmail.com wrote: every time i am getting a new notification , the number on it gets incremented but when i open notification window i can see only one the latest notification Than your IDs are not unique. and after clicking on it number of

[android-developers] alarm type application: alarm manager not waking up application

2011-10-22 Thread John Goche
Hello, I have been working on the following issue for weeks now and I cannot find the problem nor can I find an answer anywhere and hope someone on this list can help. I tried posting to this mailing list five days ago but got no response and I am still searching so I am going to try and post

Re: [android-developers] show me the money

2011-10-22 Thread TreKing
On Sat, Oct 22, 2011 at 6:41 PM, bob b...@coolgroups.com wrote: Is there a real easy way for me to see exactly how much money I've cleared with Android sales for the year? Google Spreadsheets -

[android-developers] weird error

2011-10-22 Thread bob
Any ideas why this might be happening? 10-22 19:17:34.490: ERROR/AndroidRuntime(2736): FATAL EXCEPTION: main 10-22 19:17:34.490: ERROR/AndroidRuntime(2736): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.coolfone.wv/com.coolfone.wv.WebviewtestActivity}:

Re: [android-developers] /sdcard

2011-10-22 Thread TreKing
On Sat, Oct 22, 2011 at 2:33 AM, bob b...@coolgroups.com wrote: Can someone tell me how to put a file in my /sdcard dir so I can try this thing? http://tinyurl.com/66jg4ws - TreKing

Re: [android-developers] Airpush SDK

2011-10-22 Thread TreKing
On Fri, Oct 21, 2011 at 10:43 PM, Zaid zaid.a...@gmail.com wrote: hi guys, i accidentally deleted my old airpush SDK and the 4.0 SDK has some issues. could someone please upload/direct me to where i can get the older SDK? Seems like a question for Airpush.

[android-developers] Re: Custom Dialog Not Showing

2011-10-22 Thread Alex Oh
Strange...even AlertDialog will not work. I built an AlertDialog using the builder inside onCreateDialog and still nothing. There are no messages that appear in logcat during and after its call. On Oct 22, 4:25 pm, TreKing treking...@gmail.com wrote: On Sat, Oct 22, 2011 at 4:57 PM, Alex Oh

[android-developers] Re: Cannot compile Compatibility Lib sample?

2011-10-22 Thread Zsolt Vasvari
The problem is with the sample app, not the CL. I would have thought they would have tried at least running it on pre-HC, so I am inclined to think I am doing something wrong. On Oct 23, 12:48 am, Kostya Vasilyev kmans...@gmail.com wrote: Sounds like some code in the compat library should be

[android-developers] Re: Android 2.x bidi support for Persian/Arabic font

2011-10-22 Thread Zsolt Vasvari
The SDK seems to have some new constant for RTL text, like Gravity.START and END, but my guess is that it's not complete. On Oct 23, 2:43 am, Milad khajavi khaj...@gmail.com wrote: Hi all, Is there any way to implement built-in Bidi Support in out applications? Any one know how to provide

[android-developers] Re: setOnClickListener Problems Crashing Application

2011-10-22 Thread Matt Clark
Ahhh Clean worked wonderfully. Thanks so much! -- 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: Custom Dialog Not Showing

2011-10-22 Thread Alex Oh
I wonder if it has anything to do with the way my xml file is being layed out. I just tested this and it works. The xml file is just a simple LinearLayout w/a text view. public class TestActivity extends Activity { /** Called when the activity is first created. */ @Override public

Re: [android-developers] Re: Custom Dialog Not Showing

2011-10-22 Thread TreKing
On Sat, Oct 22, 2011 at 8:52 PM, Alex Oh alexo...@gmail.com wrote: I wonder if it has anything to do with the way my xml file is being layed out. I just tested this and it works. The xml file is just a simple LinearLayout w/a text view. Post it.

[android-developers] Re: Custom Dialog Not Showing

2011-10-22 Thread Alex Oh
I got it working. I don't know exactly what fixed it, but I think it's because I was declaring the Button variables within the class rather than within the function that creates/defines the dialog. For example: public class Foo { Button x, y; private Dialog addPCDialog { private Dialog

[android-developers] 2nd microphone access

2011-10-22 Thread Josh J
How can I access the 2nd microphone (used for noise cancellation). I'm willing to recompile and build a custom image if necessary. Though need some direction where to start Thanks, Josh -- You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] Re: GPS Location

2011-10-22 Thread John Coryat
GPS doesn't require an internet connection but it does require receiving a very weak signal from a number of GPS satellites. That usually means a view of the sky. -John Coryat -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

Re: [android-developers] Re: Android Emulator internet connectivity Problem

2011-10-22 Thread manish sandhan
Thanx u Very muchTrying to check my settings On Sat, Oct 22, 2011 at 3:10 PM, Ali Chousein ali.chous...@gmail.comwrote: uses-permission android:name=android.permission.INTERNET/ is necessary in your AndroidManifest.xml only when your own application uses internet. It has nothing to do

[android-developers] Re: Eclipse, ADT and opening XML files

2011-10-22 Thread Walt Armour
I'm seeing this behaviour as well. I just had a disk crash and had to reinstall all of Eclipse and the Android SDK. Previously I was running Eclipse Helios with the latest Android SDK and latest ADT (r14). All XML files opened automatically with the appropriate Android XML helper/editor. This