[android-developers] Re: Can we get help shutting down APKTOP and other Android warez sites?

2011-06-27 Thread Indicator Veritatis
The APKOP site itself says, If the violation of your copyright, please inform, we will remove within 24 hours. Contact Us:syga...@gmail.com Have you tried this? If they have a pattern of ignoring such requests, and you can document this, that will make it easier to shut them down. On Jun 25,

Re: [android-developers] Gmail, content providers, and formalising support..

2011-06-27 Thread Dianne Hackborn
This is purely an issue for Google with their gmail application. I don't know that much about what goes on with the Google apps, but I suspect it is very unlikely for there to be an API like this. At the very least, I would say giving the user access to read all of your e-mails is *way* more

Re: [android-developers] ANR Reason: keyDispatchingTimedOut when drawing overlay on map?

2011-06-27 Thread Dianne Hackborn
Do adb shell cat /data/anr/traces.txt to see what your app was busy doing at that point. This is the very first step you need to take: understand what your app is doing that is causing the ANR. The next step I would take from that, if it is not enough to solve the problem, is profile your app.

Re: [android-developers] Re : Re: Application installation

2011-06-27 Thread Dianne Hackborn
You can't do this. You must go through the UI. 2011/6/27 Jérôme Beau javar...@gmail.com By debugging the Android source code, I can see that the native activity manager returns -1 (IActivityManager.START_INTENT_NOT_RESOLVED), when asked to: startActivity(

[android-developers] Re: how to get phone number through other method

2011-06-27 Thread Indicator Veritatis
Did you set the permission READ_PHONE_STATE? On Jun 25, 4:14 am, ellen...@hotmail.com ellen...@hotmail.com wrote: Dear Android experts, I'm trying to get the phone number through TelephonyManager.getLine1Number(). As many threads discussed before, it couldn't work in a real device, null as

[android-developers] Re: ANR Reason: keyDispatchingTimedOut when drawing overlay on map?

2011-06-27 Thread Zsolt Vasvari
On Jun 28, 8:12 am, Dianne Hackborn hack...@android.com wrote: Do adb shell cat /data/anr/traces.txt to see what your app was busy doing at that point. Seriously, we need a blog entry that describes all these useful debugging tidbits. -- You received this message because you are subscribed

Re: [android-developers] Drawing

2011-06-27 Thread New Developer
within the function that has the drawline I first call super.draw() super.onDraw(canvas); layers[0] = new BitmapDrawable( mBitmap ); //canvas.save(); mPaint.setColor(Color.BLUE); canvas.drawLine(pointA.x, pointA.y, pointB.x, pointB.y, mPaint); canvas.drawText( result,

[android-developers] Re: video codec for Android

2011-06-27 Thread Indicator Veritatis
See M. Murphy's answer above: this is a firmware issue, so belongs on a different list. On Jun 27, 4:14 am, NaveenShrivastva kumarnaveen.si...@gmail.com wrote: On Mon, Jun 27, 2011 at 4:20 PM, Mark Murphy mmur...@commonsware.comwrote: On Mon, Jun 27, 2011 at 6:04 AM, naveen kumar

[android-developers] Re: socket connect through a bluetooth issue

2011-06-27 Thread Indicator Veritatis
You have not posted quite enough information for us to be sure we can help you. Can I assume, for example, that your variable 'Socket' is a BluetoothSocket? Why have you not followed any of the coding standards for the name, then? The Sun standards, and many others, all call for class names to

[android-developers] Re: Looking for Android language translation partners

2011-06-27 Thread Indicator Veritatis
I see the app is also getting rather poor ratings. I am sure this has nothing to do with the bad translations, but is due to poor performance of the app. Why would a dog quiet down just because he heard a metallic noise? It just doesn't make sense. On Jun 26, 11:46 pm, Bernard T. Higonnet

Re: [android-developers] Drawing

2011-06-27 Thread Miguel Morales
Hmm, doesn't look like you are. Try drawing on the bitmap itself and then set that for the ImageView. See: http://developer.android.com/reference/android/graphics/Canvas.html#Canvas(android.graphics.Bitmap) On Mon, Jun 27, 2011 at 6:00 PM, New Developer secur...@isscp.com wrote: within the

[android-developers] Log file on device

2011-06-27 Thread EdwardComb
Hi all. Actually, I created an application with Log.e, whenever it got error in certain methods and it will collect all the errors. But, how do I write the Log.e and read it back on my Android device? I know from the SDK, we can use Logcat but I want to test the functionality on Android device

[android-developers] Create and embed a Webkit plugin into a webpage?

2011-06-27 Thread Eric Dorman
Hi, I have been wondering how to go about creating a webkit plugin, but is it possible at all to develop a plugin and embed it into an html webpage? Another thing to note is whenever a user's device accesses it then the plugin would be activated. I am not sure if this could be done or not.

Re: [android-developers] Log file on device

2011-06-27 Thread Nikolay Elenkov
On Tue, Jun 28, 2011 at 11:26 AM, EdwardComb dzn.aie...@gmail.com wrote: Hi all. Actually, I created an application with Log.e, whenever it got error in certain methods and it will collect all the errors. But, how do I write the Log.e and read it back on my Android device? I know from the

[android-developers] Re: Android Accelerometer Sensor output.

2011-06-27 Thread Adam Ratana
Try looking at the SensorManager class ... You can do a sensor fusion of the accelerometer with the magnetometer to get the device orientation. There's tons of examples out there. With just the accelerometer it will be more difficult. Also if you are simply looking for how the device is

Re: [android-developers] Re: Comments and Contacting Users

2011-06-27 Thread Adam Ratana
This may work for current users, assuming they still use the app, but not necessarily prospective users. I noticed some interesting things about comments , it seems comments in language X will only show for users whose market is in language X. My app is fairly new and has high ratings, but there

Re: [android-developers] ListView is no clickable

2011-06-27 Thread TreKing
On Mon, Jun 27, 2011 at 4:16 PM, Manish Garg mannishga...@gmail.com wrote: I am implementing its setOnItemClickListener but it is not getting called: You might want to include some code of how you set the listener and its implementation, unless you expect your post to be answered by a

[android-developers] Re: no suitable HttpMessageConverter found for request type

2011-06-27 Thread Zsolt Vasvari
I am sure that spring framework has a support forum -- this is not it. On Jun 28, 1:27 am, kums kums1...@gmail.com wrote: Hi All, Am using Spring-android-rest-template-1.0.0.M2.jar reference in my android application. When i invoke the postForObject () method i got exception in my android

[android-developers] Re: ListView is no clickable

2011-06-27 Thread Zsolt Vasvari
Add: android:focusable=false android:clickable=false to your CheckBox On Jun 28, 5:16 am, Manish Garg mannishga...@gmail.com wrote: Hi All, I have a simple list view in my application. I am implementing its setOnItemClickListener but it is not getting called:         ListView

[android-developers] Re: Comments and Contacting Users

2011-06-27 Thread Zsolt Vasvari
Having no option to see comments in language other than your own is just one of the many boneheaded decisions made by the Android Market team. The fact is that most comments are in English even if the writer is in a different country is besides the point -- they are not visible on devices which

[android-developers] Re: Android application blocked by Market for Motorola Xoom

2011-06-27 Thread albnok
On a Motorola Xoom WiFi. I am allowed to install it according to the web Market. On Jun 27, 11:39 pm, Carlos Silva r3...@r3pek.org wrote: On Mon, Jun 27, 2011 at 13:06, Carlos Silva r3...@r3pek.org wrote: On Mon, Jun 27, 2011 at 12:06, Mark Murphy mmur...@commonsware.comwrote: On Mon, Jun

[android-developers] Need example on how to use MonkeyRunner from java

2011-06-27 Thread Karthikeyan R
Hi, I require an example on how to use MonkeyRunner from java. I tried using it by extending MonkeyRunner.java but was not successful. Any help regarding this will be really helpful. I searched over the forums and web but was not able get it. Thanks in advance Thanks --Karthik -- You

[android-developers] How to remove XML child having same name

2011-06-27 Thread HariRam
Hi all, Thanks for valuable replies. I have two node having same name with different data. i want to remove one particular node instead of deleting two nodes. For example: names nameApple/name nameBall/name nameCat/name nameDoll/name nameElephant/name /names In the above example there

Re: [android-developers] How to remove XML child having same name

2011-06-27 Thread Kumar Bibek
This is not even remotely related to Android. http://www.exampledepot.com/egs/org.w3c.dom/RemNode.html *Thanks and Regards, Kumar Bibek* * http://techdroid.kbeanie.com http://www.kbeanie.com* On Tue, Jun 28, 2011 at 10:35 AM, HariRam hariram1...@gmail.com wrote: Hi all, Thanks for valuable

[android-developers] Re: How to remove XML child having same name

2011-06-27 Thread Mr RAM
Thank you kumar, I Hope android developers knows Java well. The given example remove all nodes which contains same name. But my example is quit different, i want to delete only one node. On Jun 28, 10:08 am, Kumar Bibek coomar@gmail.com wrote: This is not even remotely related to Android.

Re: [android-developers] Re: How to remove XML child having same name

2011-06-27 Thread Kumar Bibek
Android devs know Java well? :) Not exactly true. Anyway, look at the different methods and refer the docs and I am sure you will find a solution. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

<    1   2   3