[android-developers] Re: NFC

2011-05-11 Thread nadam
The closest option currently available is NDEF push. http://developer.android.com/guide/topics/nfc/index.html#p2p Tag/card emulation is not included in Android yet. On 10 Maj, 06:24, abe wrote: > Hi, I'm a new one in android development, I wonder if I want to use > Nexus S 2.3.3 as tag  and scan

[android-developers] holder.text.setText(Listdisplay.name[position]);

2011-05-11 Thread subha
Hi Android developer groups! Use the Typeface with holder means properly get output, i mean here * holder.text.setTypeface(tf);* , but how can set the Typeface here * holder.text .setText(Listdisplay.name[position]);* i mean how can use setTypeface with holder and setText? See below code p

[android-developers] Re: Development Patterns

2011-05-11 Thread Kacee
Please read little more from http://developer.android.com Once you'll start writing Android code, these queries will go off On May 11, 2:08 pm, Cory Kaufman wrote: > Hi, > > Has anyone started cataloging common design patterns that arise when > developing Android apps? > > For example: > > It's w

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

2011-05-11 Thread Pandi
But Requirement is to run monkey for the whole package. How to debug the issue from logged message. I could not get any clue. Is it restarting Music Application or particular service/activity mentioned in the log? Thanks, Pandi On May 11, 8:41 pm, lbendlin wrote: > Why do you let the monkey run

[android-developers] Re: GPS

2011-05-11 Thread harsh chandel
please check if you added permissions in the manifest file and your internet is connected at the time you run the app On May 9, 8:34 pm, Innocent wrote: > 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 >

[android-developers] Re: Injecting Data into Android's Location Manager

2011-05-11 Thread gjs
Hi Have a look at - http://sourceforge.net/projects/bluegps4droid/ http://androgeoid.com/2010/09/why-use-an-external-bluetooth-gps-receiver-with-an-android-phone/ Regards On May 12, 10:52 am, Edmund wrote: > Hi, > > I was wondering if it is possible if our customized hardware device > does no

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

2011-05-11 Thread Peter Webb
You can't develop Android applications entirely on Android phones. The SDK runs on Windows, Linux and Mac but not the Android o/s. Don't hold your breath. I can't imagine that running Eclipse on a phone is going to work very well, even if it was feasible. OTOH, if you own a PC, you just run the S

Re: [android-developers] On CRC32, LVL and tamper-proof app

2011-05-11 Thread Nikolay Elenkov
On Wed, May 11, 2011 at 7:32 PM, Shine wrote: > > In that post, Dianne Hackborn suggests to use binary certificates to > check .apk integrity (i.e the app was not repacked/cracked) > > Do you think that this code is effective to do this? (I also obfuscate > the code and I made changes to the impor

[android-developers] Re: Best Way to Handle Chained Async HTTP?

2011-05-11 Thread dnkoutso
You can put all of these "tasks" into one AsyncTask which runs on its own thread. Perform them one by one in the doInBackground() method which could include your error handling as well. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To p

Re: [android-developers] Usage Statistics

2011-05-11 Thread Marc Lester Tan
Take a look at UsageStatsService.java http://android.git.kernel.org/?p=platform/frameworks/base.git;a=blob;f=services/java/com/android/server/am/UsageStatsService.java;h=6e8f24823efe88ab649ab5e6ddb9a49e69601bca;hb=HEAD

Re: [android-developers] Re: error when trying to compile project from "Learning Android"

2011-05-11 Thread B Lyon
I don't know. I could way off base. It seems weird if it's an example in the book (but it's a very new book, it looks like). I've only hit weird errors when the same class is in two places. Maybe sometimes "you" can get lucky and the classloader misses the issue somehow based on other things.

[android-developers] Re: Keep a service running continuously

2011-05-11 Thread perumal316
I am communicating with a NFC tag and sending commands to the tag. But the service gets cutoff and I could not complete the sending of commands. Increasing the timeout doesn't help too. That's why need looking for a way to continuously run the NFC service. On May 12, 11:12 am, dnkoutso wrote: >

[android-developers] Re: Activity lifecycle: invoking finish

2011-05-11 Thread dnkoutso
If I remember correctly you can use onPause() on activity B that will block before any callback occurs on activity A. Beware though, not to do any long running operation in onPause() as it would stall the app. -- You received this message because you are subscribed to the Google Groups "Androi

[android-developers] Re: error when trying to compile project from "Learning Android"

2011-05-11 Thread Spooky
On May 11, 10:03 pm, B Lyon wrote: > well, org.json.JSONArray is apparently in both jtwitter.jar and > android.jar, which can confuse things, I think. I've yet to mess with > the twitter stuff. It looks like there's a twitter library that is > "android-ready" called twitter4j you might want to

[android-developers] Re: Activity lifecycle: invoking finish

2011-05-11 Thread Vikram
This seems to be the order. B.onPause() -> A.onStart() -> A.onResume() ->B.onStop() - >B.onDestroy(). which makes sense! On May 12, 10:43 am, Vikram wrote: > I have two activities A and B. A is in the stopped mode and B is > running. When I invoke finish() on B, A.onStart() and A.onResume() are

[android-developers] Re: Keep a service running continuously

2011-05-11 Thread dnkoutso
startForeground() basically helps you achieve keeping your service running as long as possible. However, the cost of doing this is that you must provide an ongoing notification so the user is aware that something is constantly running. What is it you are trying to achieve and you want the NFC s

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

2011-05-11 Thread Zsolt Vasvari
setEnabled(false); setClickable(false); On May 12, 9:56 am, Rick Alther wrote: > Zanorotti, what kind of menu is this?  I use setEnabled() on my Options Menu > and it works as you describe - i.e. it's grayed out and does not react to > the user tapping it. > > Do you have a code sample (and the r

[android-developers] Re: "Authorizing purchase"

2011-05-11 Thread Zsolt Vasvari
Yes, welcome to the Adroid Market. Compared to the AppStore, it's a disgrace. There are no viable developer support channels available. You can send an e-mail to them, but you probably won't receive a response for days and when you do, it will be canned. Any further communications will be unans

Re: [android-developers] Re: error when trying to compile project from "Learning Android"

2011-05-11 Thread B Lyon
well, org.json.JSONArray is apparently in both jtwitter.jar and android.jar, which can confuse things, I think. I've yet to mess with the twitter stuff. It looks like there's a twitter library that is "android-ready" called twitter4j you might want to try if you're just wanting to learn stuff, an

[android-developers] Keep a service running continuously

2011-05-11 Thread perumal316
Hi All, If I want to keep a service (NFC Service) running continuously must I specify it as android:persistent="true" under the manifest file? Or must I use Service.startForeground() in the main java file? Or is there any other method? Currently for my NFC application, the NFC service seem to st

[android-developers] Re: error when trying to compile project from "Learning Android"

2011-05-11 Thread Spooky
Ok, just to be safe, I'm posting the whole .classpath file: See anything wrong? Thanks, --jim -- You receiv

[android-developers] Activity lifecycle: invoking finish

2011-05-11 Thread Vikram
I have two activities A and B. A is in the stopped mode and B is running. When I invoke finish() on B, A.onStart() and A.onResume() are being invoked before B.onStop() and B.onDestroy(). Is this normal behavior? I find this a little strange! I want to cleanup stuff before I hand over control to B.

Re: [android-developers] Usage Statistics

2011-05-11 Thread TreKing
On Wed, May 11, 2011 at 8:01 PM, Edmund wrote: > For example, if I wanted to know how many times a certain APK was launched. > How long it was used for. And also, if I wanted to know details about how > the APK was being used such as how many times they played a certain music > track in a music p

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

2011-05-11 Thread gjs
Hi, View this from Google IO has an explanation of audio focus http://goo.gl/H5nFe Regards On May 11, 8:22 pm, Mika wrote: > Maybe the other application just puts the microphone on again? > > -Mika > > On May 11, 10:47 am, "Ian Kao@TW" wrote: > > > > > > > > > Now I am trying to build a apk w

Re: [android-developers] error when trying to compile project from "Learning Android"

2011-05-11 Thread B Lyon
I'd check for two different jars containing the same class. I didn't get that specific error before about json, but I seem to remember the dalvik message. Not sure if it would help, but I am curious what the entries are of your .classpath file in the project folder. You'll probably have the src/g

Re: [android-developers] "Authorizing purchase"

2011-05-11 Thread TreKing
On Tue, May 10, 2011 at 5:55 AM, Apphaus wrote: > Now when these sort of things happen on the iOS/Apple platform you drop a > mail to the Apple Developer support and get feedback within 48 hours. I see > no such thing from Google? > Wow, you *are* new. Welcome! I think it is kind of lame not o

[android-developers] Re: GPS

2011-05-11 Thread gjs
Hi, Read up on using mock location in emulator http://developer.android.com/guide/topics/location/obtaining-user-location.html Regards On May 10, 1:34 am, Innocent wrote: > 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 sim

[android-developers] Ok, re-phrasing the question about the "Conversion to Dalvik format failed with error 1" question

2011-05-11 Thread Spooky
Ok, over 13 hours since I posted my question about the error I'm having (like many others, it would appear) about getting a consistent error saying, "Conversion to Dalvik format failed with error 1" (may not be 100% exact, but you know the one I'm asking about Since I have yet to get an answe

[android-developers] Best Way to Handle Chained Async HTTP?

2011-05-11 Thread Ian
The server side of my Android app has a file that specifies root URLs for various resources that I use throughout the lifecycle of my app. Two of the resources also specify URLs I'll need to fetch other resources. Since the HTTP framework we wrote is asynchronous, I need a way to chain these ca

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

2011-05-11 Thread Rick Alther
Zanorotti, what kind of menu is this? I use setEnabled() on my Options Menu and it works as you describe - i.e. it's grayed out and does not react to the user tapping it. Do you have a code sample (and the related XML menu resource) so we can see if there is a problem? - Rick Alther -- You

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

2011-05-11 Thread TreKing
On Wed, May 11, 2011 at 7:26 PM, Kristopher Micinski wrote: > The problem with this is that inevitably whenever someone does this their > thread appears as the first link soon after... Word. But if they Google'd for such common queries, then the post would never exist to show up on Google ... A

[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 Zsolt Vasvari
The simplest solution, IMHO, is to store a "bool" named "landscape_only" in a resource. In the default bool.xml, set it to 'false" and in xml-xlarge-v11 set it to "true". I am assuming you want lanscape on Honeycomb only. If any tablet, even pre-Honeycomb, put it into xml-xlarge instead. On May

Re: [android-developers] parse image

2011-05-11 Thread Miguel Morales
JSONObject json = new JSONObject(jsonString); On Tue, May 10, 2011 at 7:04 AM, nika-...@ya.ru wrote: > how to parse this string using json > "weather": [ {"weatherIconUrl":[ {"value": "http:\/\/ > www.worldweatheronline.com > \/images\/wsymbols01_png_64\/wsymbol_0002_sunny_intervals.png" > } ] >

Re: [android-developers] IWindowManager Hard Key Blocking/Mapping

2011-05-11 Thread Dianne Hackborn
This is out of the scope of third party application development; the question should be asked on android-porting. On Thu, May 12, 2011 at 1:07 AM, Edmund wrote: > Hi, > > I was wondering if there was a way to enable/disable long-press > features for the android hard key buttons. Also, what is th

[android-developers] Re: Screen refreshing

2011-05-11 Thread Nicholas Johnson
> > If fact, I do want the UI to be locked while > the proccess is working > Are you sure you want the main thread blocked? This could cause the "Application Not Responding" error to pop up during your lengthy process. And users tend to get very confused when their phones become unresponsive.

[android-developers] IWindowManager Hard Key Blocking/Mapping

2011-05-11 Thread Edmund
Hi, I was wondering if there was a way to enable/disable long-press features for the android hard key buttons. Also, what is the best approach to trap hard key inputs across all the applications running in our system. And also how to remap their meanings. Can this be done at an APK level above th

[android-developers] PopUp Error Message Dialog Control

2011-05-11 Thread Edmund
Hi, I was wondering how to suppress the dialog box that happens when an application crashes or has an exception. Can this be done at an APK level or does it have to be done by modifying the android os code. Thanks, --Edmund Chang chang.edm...@gmail.com -- You received this message because you

[android-developers] Selectively push updates to clients

2011-05-11 Thread BrightSoul
Hello everyone, I'm on the analysis phase of an application I want to develop with Sencha Touch. I'll probably deliver it to Android devices using PhoneGap. Here's my plan: as soon as a client installs the application, he/she will see just a bunch of basic features and, after logging in, I want to

[android-developers] Arabic Language Support

2011-05-11 Thread Edmund
How do I provide Arabic Language Support and how can i integrate an Arabic font layout engine? Does android already support arabic language? (i'm using android 2.1 api level 7 code btw) thanks, --Edmund -- You received this message because you are subscribed to the Google Groups "Android Develo

[android-developers] ACTION_POINTER_1_DOWN trapped instead of ACTION_POINTER_DOWN

2011-05-11 Thread Ryan Routon
Hey Guys, I am debugging a project with a project build target of 2.2 on a Droid X and had a question about the events I am trapping in my overridden onTouchEvent() function. I am trapping ACTION_DOWN, and ACTION_UP as I should, being able to extract the x and y coordinates from the MotionEvent v

[android-developers] Hide mouse cursor when bluetooth keyboard connects

2011-05-11 Thread Marko
Hello everyone! I'm having a rather anoying problem: whenever I connect my bluetooth keyboard to my android phone (2.3.3), a small mouse cursor appears on screen and the only way to get rid of it is to reboot the phone (it does not disappear when the keyboard is disconnected). This obstructs my ap

[android-developers] Debugging errors in Eclipse

2011-05-11 Thread cmt
I have a simple app that I'm trying to debug in Eclipse. I debug the app and have inserted some breakpoints. As I step into the breakpoints, I get errors, but the errors always seem meaningless to me saying stuff like this: "Source not found The JAR file C:\android-sdk_r07\android-sdk-windows\

[android-developers] AutoCompleteTextView with restricted input

2011-05-11 Thread delta42
Greetings Androidians, I would like to have a special control that behaves like an AutoCompleteTextView but does not allow the user to type any characters that would not cause the AutoCompleteTextView to bring up values in its list. Put another way, I have a list of 400+ states and countr

Re: [android-developers] Android data storage issue

2011-05-11 Thread Nicholas Ault
The SQLite docs touch on this: http://www.sqlite.org/lang_vacuum.html HTH, minuo On Wed, May 11, 2011 at 6:08 AM, boyscout ninja wrote: > 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

[android-developers] After Upgrading to Android 2.3.3, the TCP messages experience delays

2011-05-11 Thread Phani Yarlagadda
Hi, I have an Android application with SIP client part written in C++. After upgrading to Android 2.3.3, it is noticed that the SIP REGISTER messages are not coming out of the device (as per the Wireshark traces taken from the Wifi accesspoint) immediately. When the application for the first time

[android-developers] AVD Emulator Opens Wrong Dpi

2011-05-11 Thread canalrun
Hello, I have created an AVD virtual device representing the Samsung Vibrant. I choose all the default settings: Target Android-2.1-update 1 level 7, 16 MB SD, WXVGA, and I accept 240 density and 24 MB heap. About half the time when I start the virtual device via AVD it comes up in the wrong densi

[android-developers] Outgoing data packet

2011-05-11 Thread jeet shrivastava
Hi all In my android app i need to access each outgoing network data gram send by any of the app. is there any way to fetch out the (incoming and outgoing)data packet into my background service. if any one have idea about it then please reply. with thanks Jeet -- You received this message be

[android-developers] Usage Statistics

2011-05-11 Thread Edmund
Hi, I was wondering what type of services exist to track usage and what type of usage data it has available. For example, if I wanted to know how many times a certain APK was launched. How long it was used for. And also, if I wanted to know details about how the APK was being used such as how many

[android-developers] How to write the Monkey user supplied script?

2011-05-11 Thread michael
Hi, I am looking for some documentations about how to write the Monkey script based on the events of applications, e.g., sample files Anyone could help? Thanks a lot! Best, Michael -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post t

[android-developers] Interfacing a touch screen and android phone

2011-05-11 Thread ibigpapa
I would like to interface the android phone (G2x in my case) with a touch screen monitor(Such as XENARC 700TSH 7" TFT LCD) using the ADK. I was thinking as using an arduino as an intermediary. So the phone with HDMI out will put the phone interface on the touch screen. Then the usb from the touc

[android-developers] error when trying to compile project from "Learning Android"

2011-05-11 Thread Spooky
I'm getting the following when trying to build the "Yamba" project from the "Learning Android" book (I'm in the middle of Chapter 6 right now). I'm using Eclipse version 3.5 (Galileo) and release 11 (just updated yesterday, no change in error messages from release 10) of the Android SDK on windows

[android-developers] Android SDK Emulator setup

2011-05-11 Thread range...@gmail.com
How can I setup the emulator that came with the SDK to act as a tablet instead of a phone? -- 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 gro

[android-developers] How to write the Monkey user supplied script?

2011-05-11 Thread michael
Hi, I am looking for some documentations about how to write the Monkey script based on the events of applications, e.g., sample files Anyone could help? Thanks a lot! Best, Michael -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post t

[android-developers] Injecting Data into Android's Location Manager

2011-05-11 Thread Edmund
Hi, I was wondering if it is possible if our customized hardware device does not have a GPS antenna, but we have location data coming from another source, if we can inject this data into the Android Location Manager so that other APK's (programs) that use the passive location manager to get GPS co

[android-developers] StackOverflowError within performTraversals

2011-05-11 Thread Sam D
Hello All, Thanks in advance for any words of wisdom! I'm running into a tricky problem whereby my application throws a StackOverflowError exception within ViewRoot.draw. I know the easy answer to fix this would be to simplify my view hierarchy, but lets assume for a second that I can't do that. A

[android-developers] Development Patterns

2011-05-11 Thread Cory Kaufman
Hi, Has anyone started cataloging common design patterns that arise when developing Android apps? For example: It's worked out well for me to create a base class that extends Activity that all of my other activities extend, so I have a central place to put common functionality. When should strin

[android-developers] TabLayout Problem with Keyboard

2011-05-11 Thread Our-Android
how to resolve : tab will come up on Keyboard. if we use adjustPan in Menifest then title bar will be scroll-up how to? 1. hide tabs while using keyboard 2. show title bar while hiding tabs Thanks for your kind support. -- You received this message because you are subscribed to the Google Gr

[android-developers] Re: ACTION_POINTER_1_DOWN trapped instead of ACTION_POINTER_DOWN

2011-05-11 Thread Ryan Routon
Let me amend that, I meant ACTION_POINTER_2_DOWN instead of ACTION_POINTER_1_DOWN On Wed, May 11, 2011 at 5:41 PM, Ryan Routon wrote: > Hey Guys, > > I am debugging a project with a project build target of 2.2 on a Droid > X and had a question about the events I am trapping in my overridden > on

[android-developers] SDK Emulator Question

2011-05-11 Thread range...@gmail.com
How do I setup the emulator to act as a tablet instead of a phone? -- 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 androi

[android-developers] pandaboard system.img

2011-05-11 Thread mike digioia
HI, Can't get fastboot to work with my system.img! Has anyone done any pandaboard android development on this group? Or maybe I am in the wrong group. I am part of the pandaboard kernel group but my question is related to using android apps on a panda board. Just would like to know a process to

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

2011-05-11 Thread ashutoshmimani
The documentation explains that pretty well actually. http://developer.android.com/reference/android/widget/RelativeLayout.LayoutParams.html layout_alignRight - Makes the right edge of this view match the right edge of the given anchor view ID. layout_alignLeft - Makes the left edge of this view m

[android-developers] Merchant account woes

2011-05-11 Thread Megadev
Hi everyone, I've seen many people have this same problem and I'm not even sure that there's a solution - I'm trying to setup a merchant account to sell Android games, but I continually get this error: "Sorry, we could not setup your merchant account. Please try again later." My account appears

Re: [android-developers] Problem working with SOAP (lib kSOAP2)

2011-05-11 Thread sathish babu
Hi, For getting response the webservice use the following Object result=envelope.getResponse(); Log.d(TAG, "Result: " + result.toString()); Regards, SathishBabu. S On Tue, May 10, 2011 at 7:20 PM, Gorka wrote: > Hi, > > I am trying to access to a web service using SOAP using the ksoap2 > libr

[android-developers] getPixels and alpha

2011-05-11 Thread Vinicius Carvalho
Hi there! I'm trying to manipulate a bitmap pixels using android graphics api. The idea is to create a heatmap using a black/white/alpha gradient. Latter I'll change the color of each pixel depending on it's alpha (red to 255 alpha, green to 0 alpha) The problem I'm having is that all the pixels

[android-developers] On CRC32, LVL and tamper-proof app

2011-05-11 Thread Shine
Hi, I was trying to implement suggestions as described in famous article by Tim Bray: http://android-developers.blogspot.com/2010/09/securing-android-lvl-applications.html I hope I understood the concepts, but I'm experiencing difficulties with the tamper-proof part. Infact, as long as I calculat

[android-developers] Trade my Android Open Accessory Developer Kit (ADK) trade for your new Sprint Nexus S 4G?

2011-05-11 Thread Ben
I have one of the first official ADK (Android Open Accessory Developer Kit) Arduino kits distributed by Google during IO today and I'm looking to trade it for the brand new Sprint Nexus S 4G phone. I hope it is not inappropriate to put this out to android-developers mailing list. I happened to be

[android-developers] ndk5 exception crash with third-party library

2011-05-11 Thread wasabee18
Hi everyone, that's my first post, please be nice :) My problem is as follows: I have 2 library, namely lib1 and lib2 compiled with standalone toolchain. Both libs need to use stl and exception. I am using ndkr5, and i have problem with exception ! According to the doc in ndk (document android-nd

[android-developers] Important spiritual sites & pyramid spiritual society movement(meditation & vegetarianism)

2011-05-11 Thread kvponline
Hi friends, visit www.pssmovement.org www.pyramidvalley.org www.lightchannels.com download the pdf http://www.pyramidspiritualsocieties.org/PSS/Publications/feb08Final_p_13%20to%20120.pdf VISIT WORDLS LARGEST PYRAMID FOR MEDITATION IN BENGALURU significant Features: 1) World's Largest Meditatio

[android-developers] HoneyComb key board support

2011-05-11 Thread fatnja...@gmail.com
Hi, I see in this article http://developer.android.com/sdk/android-3.0.html#locs that android is including support in several new languages, is that includes a keyboard? if not, what can be done about it? I am interested in Hebrew in particular. Thanks -- You received this message because you ar

[android-developers] (2nd try) Segmentation fault when loading a certain class from an OSGi framework under Android 2.2 & 2.3

2011-05-11 Thread Jan Krueger
Hello, ... first of all: I hope that this is not the second time I'm posting this question here - I tried to do so two days ago, but unfortunatlely, it seems as if my question did not appear in the group due to an error or so (?). So I try it again, I hope, I does not bother someone... I face

[android-developers] Help me in detecting sound pulses (basically frequency detection)

2011-05-11 Thread Soumyajit Roy
Hi all, I am soumyajit. Presently working on a App that needs sound pulse detection ( basically reception and detection of frequency). Can anybody help me? there are no codes in the web..and neither I found any libraries... Thanks, Soumyajit Roy -- You received this message because you are subscr

[android-developers] sending parcelable objects to different process

2011-05-11 Thread ivan harmady
Hi there, I want to send my custom object which implements Parcelable from one process(application) to an activity in another one process. But I still get error message: BadParcelableException: ClassNotFoundException when unmarshalling. I accepted some advices but still not working. Here is my code

[android-developers] crash at Meduaplay backservice

2011-05-11 Thread MMS
Hi, When i run monkey with following command "adb shell monkey -v --ignore-timeouts --ignore-crashes --ignore- security-exceptions -s 100 --throttle 500 100", i get the following message while running monkey "Scheduling restart of crashed service com.android.music/.MediaPlaybackService in 5000

[android-developers] Screen refreshing

2011-05-11 Thread Lord.Locksley
Greetings. I'm developing my first Android app, and I'm struck with a very stupid issue. I'm inside an Activity class, and after responding to a certain click event, in some casses I have to start a somewhat long calculation. Before this I'm trying to update the UI, setting up the text of a statu

[android-developers] crash at Meduaplay backservice

2011-05-11 Thread MMS
Hi, When i run monkey with following command "adb shell monkey -v --ignore-timeouts --ignore-crashes --ignore- security-exceptions -s 100 --throttle 500 100", i get the following message while running monkey "Scheduling restart of crashed service com.android.music/.MediaPlaybackService in 5000

[android-developers] Is 2.3.3_r1 release and 2.3.3_r1a release are same

2011-05-11 Thread Rajesh M
Hi, Is 2.3.3_r1 release and 2.3.3_r1a release are same? If it's not the same, Please do let me know what is the difference between them. Thanks in advance, Regards, Rajesh M -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this

[android-developers] is it crash or recovery

2011-05-11 Thread Karthik G
Hi This is the log from the gingerbread logcat when running monkey. I/ActivityManager( 142): Process com.cooliris.media (pid 19988) has died. I/WindowManager( 142): WIN DEATH: Window{406a9808 SurfaceView paused=false} W/InputManagerService( 142): Window already focused, ignoring focus gain of

[android-developers] plot data recived by bluetooth

2011-05-11 Thread michelandro
I want to use android to receive data using bluetooth and then plot them in a real-time 2D graph. Any suggestions and example codes about how to do this two things is very welcome. Let's do it!!! Thank you ;) -- You received this message because you are subscribed to the Google Groups "Android D

[android-developers] Android and JMX

2011-05-11 Thread brian lee
I am trying to write a simple app to monitor some mbeans of another java application running. How can I get android to import javax.management so I can create a connection to the jmx? Thanks -- You received this message because you are subscribed to the Google Groups "Android Developers" group.

[android-developers] Documentation

2011-05-11 Thread Jorge Luis
Does anyone have any starting documentation for dummies like me that are used to structured language? I can't access any website from my work since the firewall won't allow, so if any of you could send my, anything, a tutorial, a how-to, a guide, anything i would thx a lot. Jorge. -- Jorge Luis

[android-developers] StackOverflow in Main/UI Thread

2011-05-11 Thread Sam D
Hi All, I'm running into a StackOverflowException in ViewRoot.performTraversals. After looking around for a while I've concluded that my view hierarchy is probably too deep. My questions are as follows: 1. Why would this only occur on the HTC Thunderbolt and Samsung Nexus S? Other older devices ru

[android-developers] Developing image processing project ny interfacing matlab and android phone

2011-05-11 Thread Ajit
Hello, I am developing a project which takes a natural scene image as input and detects text,recogniss and converts it to speech. i have done it using matlab. now i want it to go real time i,e a mobile application, which shd be able to take images from camera of phone, and sent it to matlab, the ma

[android-developers] parse image

2011-05-11 Thread nika-...@ya.ru
how to parse this string using json "weather": [ {"weatherIconUrl":[ {"value": "http:\/\/ www.worldweatheronline.com\/images\/wsymbols01_png_64\/wsymbol_0002_sunny_intervals.png" } ] -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post t

[android-developers] MOTODEV App Summit Buenos Aires

2011-05-11 Thread p1r4t0s
FYI... hispanos and comunity http://developer.motorola.com/eventstraining/summit/buenosaires/?hl=es-419&utm_campaign=20110509-summit11latam&utm_medium=ES&utm_source=email&utm_content=baires&utm_term=lastchance -- You received this message because you are subscribed to the Google Groups "Android

[android-developers] DeviceMonitor]Failed to start monitoring

2011-05-11 Thread girg
Turn off "USB Debugging" on your device when using only to charge it, media player or masive storage. Rahul Garg View profile More options Aug 5 2010, 5:43 am From: Rahul Garg Date: Thu, 5 Aug 2010 04:43:55 -0700 (PDT) Local: Thurs, Aug 5 2010 5:43 am Subject: DeviceMonitor]Failed t

[android-developers] [OpenGL ES] Using transparent png textures won't work

2011-05-11 Thread Forsaken
Hi there, I've got some trouble getting transparent png-textures work. In my project i am currently using 3 regular jpg textures (256x256) and one transparent png (128x128x32bpp). Without any further options everything renders just fine except the transparency is missing. After i found the followi

[android-developers] Wanted: Convmv for Android, a useful tool

2011-05-11 Thread netprince
Convmv is a very useful tool to replace unknown chars from unknown charsets in filenames. There are some files with unknown chars in file name in my android mobile which I can't delete them. I tried Root Explorer, ASTRO, and other commands, none of them worked. I find that the tool convmv may help

[android-developers] Error when trying to set the preferred activity

2011-05-11 Thread wolfman
Hi, I have an app which creates a sync account, and I want to set the created account as the preffered one for contacts sync. I get the following error - 'Neither user 10052 nor current process has android.permission.SET_PREFERRED_APPLICATIONS.' android.permission.SET_PREFERRED_APPLICATIONS has

[android-developers] How to change Notification Duration on HoneyComb?

2011-05-11 Thread theactiveactor
On HoneyComb, posting a Notification with the same id as an already- posted Notification does not produce an immediate visual update. For example, on GingerBread, everytime this code is invoked: PendingIntent pi = PendingIntent.getActivity(this, 0, notificationIntent, 0); mNotific

[android-developers] thread.join() works only with debugger

2011-05-11 Thread firoz umran
this segment of code works when its in the debugger and a break point is set( a break point anywhere in the program). But, infinate loops otherwise public String runCommand(function cmd) throws InterruptedException { cmd.setInputstream(in); cmd.setOutputstream(out); cmd.start(); while(true) { cmd

[android-developers] Has Android support of parsing WBXML (SyncML, OMA standarts)??

2011-05-11 Thread Dmytro Paslavskyy
I need to parse SyncML in order to build OMA DM Client -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers

[android-developers] Problem passing parameters with KSOAP2 at a PHP webservice

2011-05-11 Thread Octavian Pascu
Hi everyone, I have the following code which calls a PHP webservice. The code connects to the service, but the paramters are not passed well. Because I've noticed that I have problems passing the parameters, I had modified the method to return the parameters, and for the next code it returnes "m m

[android-developers] Does any one has cross compiler for android

2011-05-11 Thread netprince
There are some files with unknown chars in file name in my android mobile which I can't delete them. I tried Root Explorer, ASTRO, and other commands, none of them worked. Convmv is a very useful tool to replace unknown chars from unknown charsets in filenames. I find that the tool convmv may

[android-developers] Compile andriod source under ubuntu 11.04 64 bits

2011-05-11 Thread ying...@gmail.com
Hi, I have downloaded the android source on my ubuntu 11.04 64 bits environment. $ uname -a Linux yinglcs-Win7-VirtualBox 2.6.38-8-generic #42-Ubuntu SMP Mon Apr 11 03:31:24 UTC 2011 x86_64 x86_64 x86_64 GNU/Linux But when i compile the code, i get this error: /usr/include/gnu/stubs.h:7:27: fata

[android-developers] please provide SDK components && API docs download links

2011-05-11 Thread Jarod Liu
using the manager tool to download these stuff really a nighmare in bad network connection. (yes, I just suck...again) why not provide separated links in the download page -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this grou

[android-developers] Setting the browser's user agent

2011-05-11 Thread ZathrasOne
Is there an easy way to temporarily change the user agent of the browser (without modifying and recompiling the code)? -- 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] Change phone setting programatically

2011-05-11 Thread Dmytro Paslavskyy
Is that possible to change phone setting such as Email profile, Wi-FI Access Point profiles, Intenet settings from Android SDK, maybe from NDK??? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-d

[android-developers] hi

2011-05-11 Thread Ravi kumar Karunanithi
hi i;'m new to android developer, can u tel me, how to select a particular date of day from the opening calendar when i click the button... pls give me the code... i'm stil waiting... -- You received this message because you are subscribed to the Google Group

[android-developers] NFC

2011-05-11 Thread abe
Hi, I'm a new one in android development, I wonder if I want to use Nexus S 2.3.3 as tag and scan it with NFC-Reader, what can I do? I try to search sample code but I couldn't get it yet, any one know please help ! thank in advance. -- You received this message because you are subscribed to the

[android-developers] Tweakker 'All Operator APNs | Beta" app

2011-05-11 Thread supp...@tweakker.com
We (Tweakker) have launched an Android application that will help users worldwide set up their internet (APN) settings.. We hope this forum could be interested in testing this new application. Even though your internet is working on your phone you can still try the app and help us improve it. For m

  1   2   3   >