Re: [android-developers] ViewFlipper

2012-06-27 Thread Narendra Singh Rathore
On Wed, Jun 27, 2012 at 12:36 AM, chandur mani chandur.ind...@gmail.comwrote: I have 5 content views in view flipper, here i use to see all 5 content through viewflipperinstance.showNext() and viewflipperinstance.showPrevious(). Here my problem is both next and previous buttons click, it

Re: [android-developers] NFC game

2012-06-27 Thread iconapp 2010
what kind of tag i need to use for the nfc hunter game .. can u explain me briefly plz On Tue, Jun 26, 2012 at 9:03 PM, Justin Anderson magouyaw...@gmail.comwrote: I'm glad they were helpful... The point of that link was to illustrate that you didn't need to post this question on this list.

[android-developers] Re: detect if an app is launched

2012-06-27 Thread Pent
The platform deliberately does not provide easy mechanisms to do this, because monitoring what the user is doing is not something to encourage. If someone wants to do it for 'bad' reasons, they're not going to be discouraged by a little extra time and extra resource usage of having to poll for

[android-developers] Re: Customized Soft keyboard

2012-06-27 Thread Sérgio Faria
Have a look at KeyboardViewhttps://developer.android.com/reference/android/inputmethodservice/KeyboardView.html. You define the keyboard using a XML file like this: Keyboard xmlns:android=http://schemas.android.com/apk/res/android; android:keyHeight=50dp android:keyWidth=16.66%p

[android-developers] checkbook issue ,in expandable list view

2012-06-27 Thread krishna kumar
Hi All, I am working in an expandable list view by an simple expandable list adapter. Also, I have fixed a database, where I store my data.I managed to display the data in expandable list view. Each child has a textview and a checkbox. Here is what I'm trying to achieve: *1) the checkboxes

[android-developers]

2012-06-27 Thread Vijay Krishnan
Hi all, I have been developing some OCR(Optical Character Recognition) app.So,i want to process the image and remove the noise on the surface.If anyone knows about image processing,share ur knowledge. Thanks, vijay.k -- You received this message because you are subscribed to the

[android-developers] Android USB host and hidden devices

2012-06-27 Thread Alexey
I am developing an Android application in which I have to communicate to an USB device. I tried to use standart google API in my app, but list of devices is allways empty. Same things if i use USB device info with google api. List of devices searched by google api is empty, lsusb gives following

[android-developers] How can I open my app with power button?

2012-06-27 Thread Andrea Fasciglione
It should be not clear, but how can i open my app with power button? I would add this option so in case of emergency a person can press (for example) three times the power button and my app opens. How can i do this? [I hope it was clear...] -- You received this message because you are subscribed

[android-developers] Re: How to create a x509 certificate?

2012-06-27 Thread Anton Dyachenko
I need similar thing. I have strong busyness requirement - use only built in crypt provider. I need to create both asymmetric key pair and x509 self signed certificate based on it. I've already implemented creating certificate with external Bouncy Castle for test reason, but i need to

[android-developers] Android Heap size issue

2012-06-27 Thread Azmat Alikhan
Hi in my app i am using about 10 MB of memory but in DDMS the total heap size displaying about 33 MB and as my memory usage increases total heap size also increaes and at extreme while my app using about 20 MB of memory but total heap size goes beyond 64 MB and it gives OutOfMemoryError. why is

[android-developers] Re: Unable to execute Bluetooth HDP Demo

2012-06-27 Thread anatoliy.odukha
Hi all, There are NexusS 4.0.4 available, Does anybody use it together with Nonin 9560bt? For me it refuse connection constantly. (but once I was able to read data from the device, cannnot reproduce this result) I logcat: 06-25 16:17:48.117: D/HSSHDP(2103): connectChannel(): app configuration

[android-developers] Wifi connection issues in android devices

2012-06-27 Thread ambiananth
Almost every android phone i tested doesn't show the wireless hotspots created by windows laptops. Initially i had this working through a software called 'connectify' . Through that software it shows the hotspot in android phone . But now that is also not working.. The wifi hotspots are shown

[android-developers] finding which application uses a port on the android device

2012-06-27 Thread Ami Turgman
Hi All, I have an android native application which hosts a web server inside it. I want to know which application makes requests before they are processed by my application. What I have is the port of the calling application. How can I find out which application is using this port? I've

[android-developers] Simple attribute/style question

2012-06-27 Thread Alex Fu
I have a custom style that I want to apply to my own implementation of EditText. The following link is a summary of how I am trying to get attributes from my custom style... https://gist.github.com/2972687 My goal is to have the style applied when I instantiate this custom EditText regardless

[android-developers] Problems with talkback in ICS

2012-06-27 Thread Andrew
I'm writing an accessibility app that seems to work ok on gingerbread builds and some ICS builds, but I seem to have problems with ICS samsung phones - particularly the galaxy nexus and s3. As soon as I enable the accessibility service registered for my app it seems to enable talkback for

[android-developers] Re: Unable to execute Bluetooth HDP Demo

2012-06-27 Thread anatoliy.odukha
Hi Raul, I have been working with NexusS(4.0.4) + Nonin 9560bt several last day buy still have no results(I received result from device only once, cannot reproduce it again). It refuses connection, 06-25 16:17:48.117: D/HSSHDP(2103): connectChannel(): app configuration name HSSHDP 06-25

[android-developers] Android rs232 on developer board

2012-06-27 Thread Andrea Manzato
I've this developer board : S5PV210 QT210 board . Anyone knows how to send and receive data through Rs232 or Uart programming in Eclipse for Android? Thanks :) -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] Re: getOrientation() method returns bad results

2012-06-27 Thread axesh ajmera
On Monday, April 23, 2012 10:35:31 AM UTC-7, Lukáš Sztefek wrote: I'm creating 3D Compass application. I'm using getOrientationhttp://developer.android.com/reference/android/hardware/SensorManager.html#getOrientation%28float%5B%5D,%20float%5B%5D%29 method to get orientation (almost

[android-developers] Much time taken in data read from socket

2012-06-27 Thread Azmat Alikhan
I'm using sockets for data transfer from one android phone and PC, it is taking 15 seconds to read about 1 Mb of data. I want to improve its performance. Could anyone suggest any better way to do that? My Code is: InputStream is= socket.getInputStream(); DataInputStream inChannel= new

[android-developers] Android Compass Help

2012-06-27 Thread axesh ajmera
Hi Guys I am creating some sample Compass app and I am having some issues on developing the app.Firstly i am not sure whether I am calculating eh values correctly and secondly it seems like a lot of jittering is happening.. I am attaching the source code below.Can you help me on steps I need

[android-developers] How can i launch my app using power button?

2012-06-27 Thread Andrea Fasciglione
It should be not clear, I'm sorry. But How can i launch my app using power button? I'd like to add this option so in case of emergency you can press (for example) three times the power button and my app launch. How can i do this? [I hope it was clear...] -- You received this message because you

[android-developers] Android Compass help

2012-06-27 Thread axesh ajmera
Hi Guys, I need your help on developing an android compass application.Here is the source code...I want to know if i am using correct algorithm and sensors for developing the app and secondly I am unable to understand why my compass jitters so much package

[android-developers] How to know about new Android CTS version when it came into the market?

2012-06-27 Thread Akhil Kumar
How to know about new Android CTS version when it came into the market? Do we need to subscribe to any mail? If, please let me know... 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] Wifi Power consumption optimisation

2012-06-27 Thread Adam Skrodzki
I want to write an application which will gather data from user and send them to router using wifi for example once in every minute (there will not be plenty of data rather 1kb in every minute but it is critical to send them quite frequently). My question is: How to optimize wifi usage? Should

Re: [android-developers] Re: Resolution Problem in Nexus One

2012-06-27 Thread Adrião Neves
I understand what you saying, but how to solve the following scenario: - You developed an application with English (default), German, and Italian languages; - A French user (whom mobile is in french and have many french applications in the phone) installs you application; - Because your

[android-developers] C2DM Registration problem

2012-06-27 Thread zaptech Dev
dear team, i have signed up with the c2dm service for android . but i havent got a confirmation and registration id for the same. Can you please let me know what is the issue in this. -- You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] get data from external file

2012-06-27 Thread daniel assa
there is a way to get date from sql by php or something? i mean some function like ajax.. -- 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

[android-developers] How to upload apk with new version, when previous key store is lost?

2012-06-27 Thread Rashid
Hi, We have been developing Android apps since a while now but unfortunately *we lost our key store which was used to sign a previously uploaded apk*, now we want to upload a new version of existing live app on Google play to do so we need to sign new apk with different key store but Google

Re: [android-developers] How can i launch my app using power button?

2012-06-27 Thread Mark Murphy
This is not supported, sorry. On Mon, Jun 25, 2012 at 1:45 PM, Andrea Fasciglione andreafa...@gmail.com wrote: It should be not clear, I'm sorry. But How can i launch my app using power button? I'd like to add this option so in case of emergency you can press (for example) three times the

[android-developers] VideoView / MediaPlayer: Select audio track

2012-06-27 Thread Herman Fries
Hello, So far I found nothing on this topic except same question on stackoverflow with no answers http://stackoverflow.com/questions/8789529/android-multiple-audio-tracks-in-a-videoview . Is it possible to select an audio track from multi-language video stream? Regards, Herman Fries --

[android-developers] Massive problem with hebrew in BaseAdapter

2012-06-27 Thread Who's Around
Hey guys! i have a list view with a base adapter for custom view. inside this listview i'm trying to add text to my view throw a TextView, and everytime the text is in hebrew, i get a stackoverflow. when the text is in ensligh, i get to see the listview properly.. it's the weirdest thing, it

RE: [android-developers] Re: FFMPEG Android NDK- Images to video

2012-06-27 Thread แม่บ้าน คิดไกล
Date: Thu, 21 Jun 2012 23:37:53 -0700 From: porcelli.giuse...@gmail.com To: android-developers@googlegroups.com Subject: [android-developers] Re: FFMPEG Android NDK- Images to video Download FFMPEG and all satellite libs, compile it with NDK and use in in your Android code !!! -- You

[android-developers] Not allowing me to install SDK as java jdk is not being recognized

2012-06-27 Thread Scharlto
Good day all, Having an issue with installing the android sdk environment on my virtual machine running windows server 2008 R2. I have had success before running on this edition of windows so I'm not sure why this is giving issues now.The issue is when I boot up the .exe. file, it starts the

[android-developers] android:onClick throws nullPointerExeption

2012-06-27 Thread CaynanVictor
Hey, guys, i had a really strange problem i was trying to do this tutorial: http://developer.android.com/training/basics/firstapp/index.html , but as soon as i add content to the method that the android:onClick calls, the app breaks and throws a nullPointerExeption. i verify the code 5 times,

[android-developers] Re: MY FIRST APP IS NOT WORKING ON PHONE / EMULATOR

2012-06-27 Thread bradleyclare
You probably defined the DisplayMessageActivity outside the original application tag in the manifest file. It should go inside the existing application tag. I made that same mistake the first time going through it. Good Luck. On Sunday, January 1, 2012 6:44:05 PM UTC-7, Vinayak wrote: HI,

Re: [android-developers] windowAnimationStyle - ignored in theme?

2012-06-27 Thread Benoit Billington
Is this still not supported? On android 2.3.x my following animation : style name=Anwb.Animation.SlidingRight !-- item name=android:windowEnterAnimation@anim/slide_in_right/item item name=android:windowExitAnimation@anim/right_slide_out/item-- item

[android-developers] new look for the android app developers website

2012-06-27 Thread appdev
Looks like the android app developers website made a big change. It will take getting used to. Any way to link to the old site/format? -- 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] Generating apk on Windows and OSX

2012-06-27 Thread dbv
We are in development mode and have: Windows XP SP3 to generate apk_w. Mac OSX 11.x. to generate apk_m. Both apk_w and apk_m are identical but with different certificates - an apk install with different certificate requires that previous apk is uninstalled first instead of overwriting. Min API 7

[android-developers] load .so

2012-06-27 Thread Yayaa
Hey guys I have a .so library that somenton have to me and i know the functions names and returns. Do i need to do something before i load the library or just put in libs/armeabi and use System.load(library name) ? -- You received this message because you are subscribed to the Google Groups

[android-developers] How to create custom tags in ExifInterface.java class in android?

2012-06-27 Thread Tilottama Gulame
I want to create my own custom tags inside the ExifInterface.java class in android. Please help me to create custom tags. -- 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] File manager code help

2012-06-27 Thread Turnipz
Hey guys, below is my code for my program, it gives me a list of directories and it allows me to click through one directory, however if I try to click through to 2 folders deep it wont let me because of if(K.getAbsoluteFile().isDirectory()==true), and removing this gives me a crash. Can

[android-developers] programmatically capture audio from a specific channel?

2012-06-27 Thread CMaN
I would like to capture the audio from a specific channel (eg. I have a 3.5mm headset and a Bluetooth headset both connected to an android phone. Right now, it receives audio from both sources when I use AudioSource.MIC and I would like to capture an audio from a bluetooth headset only) is

[android-developers] Dynamic table building - Set Weight of Seekbar so it fills space.

2012-06-27 Thread Extremest
I have extended a table row and add a checkbox and a seekbar to it. I cannot set the seekbar's gravity in code to 1 so that it will fill the rest of the row. Instead it just stays there as a very small object. I dynamically create each row object and add them to a tablelayout. Please help if you

[android-developers] Ide

2012-06-27 Thread salmanul faris
I'm new to android programming. Where i can start from. I have basic in java. Please help me... -- 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

[android-developers] How to get battery percentage

2012-06-27 Thread eddieRay
What is the code to get the battery percentage of the device? I would like to return this as a string in my application. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Re: NullPointerException when using EasyTracker for analytics

2012-06-27 Thread Tomáš Hubálek
No IDEA what is wrong. Only comment that I get it in Emulator only. On real device(s) it works well. Maybe related to SD card space? Tom On Tuesday, June 19, 2012 11:52:29 PM UTC+2, Efi Merdler-Kravitz wrote: Hi Guys, Once in a while an exception is thrown without a real reason from the

[android-developers] Need to create loop that will scan barcode until battery of device dies.

2012-06-27 Thread eddieRay
I need to create an app that will read a barcode continuously until it drains the battery to the point where the device shuts down. I will need to collect data of the barcode, the barcode type, the time duration it took to scan the barcode, as well as how long the battery lasted. I have never

[android-developers] Re: How to make autocompletetextview list border as transparent

2012-06-27 Thread Erik Telepovský
Thank you Gaurav On Tuesday, June 19, 2012 2:57:03 PM UTC+2, Gaurav Vashisth wrote: add android:popupBackground=@null to the AutoCompleteTextView On Wednesday, March 21, 2012 1:37:44 PM UTC+5:30, Android Developer wrote: Hi, I have autocompletetextview while tying its shows the list. how

[android-developers] jsoup parsing,, HELP

2012-06-27 Thread prasana kumar
for the web page http://www.fridayrelease.com/theater/cinemas/chennai/abirami-cinemas-chennai/1248 any one can give me an idea how can i get all the moview names in the above link inclludin the timings CODE// package in.mobicgoa; import

Re: [android-developers] I cant start Google Play .... It closed immediately after i pressed it ,,,,

2012-06-27 Thread Mark Murphy
This is a list for Android development via the SDK. For problems with your device, talk with whoever you bought it from. On Sun, Jun 24, 2012 at 3:38 PM, Chee Hao davidremi...@gmail.com wrote: I cant start Google Play It closed immediately after i pressed it -- You received this

Re: [android-developers] new look for the android app developers website

2012-06-27 Thread Mark Murphy
Perhaps somebody has a complete mirror of the old one somewhere, though I am not aware of any. Bear in mind that a new statue appeared at the Googleplex, and today is the first day of the Google I|O conference, meaning that we are probably just a few hours from a new Android SDK release, whose

Re: [android-developers] How to get battery percentage

2012-06-27 Thread Mark Murphy
You will want an ACTION_BATTERY_CHANGED BroadcastReceiver. See BatteryManager for the names of the broadcast Intent extras: EXTRA_LEVEL and EXTRA_SCALE will combine to give you a percentage. On Tue, Jun 26, 2012 at 10:19 AM, eddieRay eddiespencer...@yahoo.com wrote: What is the code to get the

Re: [android-developers] detect if an app is launched

2012-06-27 Thread Narendra Singh Rathore
On Wed, Jun 27, 2012 at 10:31 AM, jagruti sangani jugni1sm...@gmail.comwrote: Hi, you can use the thread for periodically checking whether any new application is launch or not.If any found then compare with that and and if it is match then insert data in database or whatever you want to do

Re: [android-developers] How to get battery percentage

2012-06-27 Thread asheesh arya
just go through this link!!! might be it helpful for you!! http://code.google.com/p/krvarma-android-samples/source/browse/trunk/BatteryInfo/ -- 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] Ide

2012-06-27 Thread asheesh arya
Android Developer site is the solution of you problem just go through this link!! http://developer.android.com/guide/components/index.html -- 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] android:onClick throws nullPointerExeption

2012-06-27 Thread Raghav Sood
Post the LogCat and relevant code from *your* app. Not the tutorial. On Mon, Jun 25, 2012 at 12:35 AM, CaynanVictor caynan...@gmail.com wrote: Hey, guys, i had a really strange problem i was trying to do this tutorial: http://developer.android.com/training/basics/firstapp/index.html , but as

[android-developers] Re: new look for the android app developers website

2012-06-27 Thread Pent
Bear in mind that a new statue appeared at the Googleplex, and today is the first day of the Google I|O conference, meaning that we are probably just a few hours from a new Android SDK release, whose docs will only show up in the new site layout. N! Not another one already! Pent -- You

Re: [android-developers] android:onClick throws nullPointerExeption

2012-06-27 Thread Narendra Singh Rathore
On Mon, Jun 25, 2012 at 12:35 AM, CaynanVictor caynan...@gmail.com wrote: Hey, guys, i had a really strange problem i was trying to do this tutorial: http://developer.android.com/training/basics/firstapp/index.html , but as soon as i add content to the method that the android:onClick calls,

Re: [android-developers] new look for the android app developers website

2012-06-27 Thread Kostya Vasilyev
2012/6/24 appdev billium59z...@gmail.com Looks like the android app developers website made a big change. It will take getting used to. Any way to link to the old site/format? Yeah, I hear you. Grey text on grey background? A body font with very dense letter spacing? Headers with empty space

Re: [android-developers] Top Developer?

2012-06-27 Thread Jose_GD
Top developers now can respond to user comments in Google Play. Don't know of another benefit, besides being a kind of honorific badge among developers. José @Jose_GD https://twitter.com/#%21/Jose_GD http://mobiledevjourney.blogspot.com El martes, 26 de junio de 2012 18:08:19 UTC-3, Robert

Re: [android-developers] How to upload apk with new version, when previous key store is lost?

2012-06-27 Thread Raghav Sood
This isn't possible. You cannot sign two versions with different keys. Neither can you recover a key from a signed apk. It is best to keep several backups of your keys. You'll have to upload a fresh app now. Thanks On Wed, Jun 20, 2012 at 1:35 AM, Rashid rashid.ina...@tkxel.com wrote: Hi,

Re: [android-developers] Not allowing me to install SDK as java jdk is not being recognized

2012-06-27 Thread Raghav Sood
Have you added the JDK to your PATH variable? Thanks On Mon, Jun 25, 2012 at 4:36 PM, Scharlto charlton2...@gmail.com wrote: Good day all, Having an issue with installing the android sdk environment on my virtual machine running windows server 2008 R2. I have had success before running on

[android-developers] Re: NDEF Message

2012-06-27 Thread Michael Roland
Hello Shekhar, I am already aware of the fact that a NDEF message can have multiple NDEF records in it and payload data allowed is maximum of 2^32-1 bytes. If I have a payload data of 100 octets which is inside the range of default MIU, in that case should I send the data in one record

[android-developers] Re: Android NFC Options

2012-06-27 Thread Michael Roland
Hi Alistair, I'm attempting to get into NFC on Android by communicating with a custom PN532 device, however I'm a little confused as to my options and the Android protocol. - NFCIP-1, is it possible to place my device as a target into this mode, for Android to automatically detect

Re: [android-developers] How can I open my app with power button?

2012-06-27 Thread Fred Niggle
The best way to achieve this would be making your app start at boot. Without modifying the firmware of users phone's there would be no way to having the power button do anything else aside from power the device up. I hope that if i have missed something here then other will pitch in and correct

Re: [android-developers] Re: getOrientation() method returns bad results

2012-06-27 Thread Fred Niggle
I suggest that you read this : http://en.wikipedia.org/wiki/Gimbal_lock Although android devices use a electronic equivalent, the same principles apply. Regards, Fred On 26 June 2012 00:50, axesh ajmera ajmeraax...@gmail.com wrote: On Monday, April 23, 2012 10:35:31 AM UTC-7, Lukáš Sztefek

Re: [android-developers] finding which application uses a port on the android device

2012-06-27 Thread Fred Niggle
I am unsure if i understand you question, it may be that programs communicating with a server do not need to identify themselves to a server, they merely send/receive data. While some programs, such as browsers do identify themselves, this is not always true. I would suggest that you practice

[android-developers] Re: does NFC in gingerbread support card simulate?

2012-06-27 Thread Michael Roland
Hi Shailen, I see that you created the NFCTagInfo App, available on the market. This app is, by far, the best Tag reader, because of all the little information it can give us, for example the HEX/ASCII values of the sectors. Thanks! Anyway, I just wanted to point out that it is possible

Re: [android-developers] Re: MY FIRST APP IS NOT WORKING ON PHONE / EMULATOR

2012-06-27 Thread Fred Niggle
First,please turn your caps lock off, second post your code and we can take a look (that does not mean you will get any answer, but we will look). Regards, Fred On 24 June 2012 01:39, bradleyclare bradleycl...@gmail.com wrote: You probably defined the DisplayMessageActivity outside the

Re: [android-developers] Need to create loop that will scan barcode until battery of device dies.

2012-06-27 Thread Fred Niggle
Start here: http://www.coreservlets.com/android-tutorial/ Regards, Fred On 25 June 2012 13:23, eddieRay eddiespencer...@yahoo.com wrote: I need to create an app that will read a barcode continuously until it drains the battery to the point where the device shuts down. I will need to collect

[android-developers] Re: HID iCLASS

2012-06-27 Thread Michael Roland
As far as I understand it, HID iClass does not use all ISO 15693 layers and is, thus, not compatible to the Nexus S's NFC hardware. br Michael -- 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] NFC game

2012-06-27 Thread paulkayuk
The question is too vague, we need much more information in order to be able to advise you. e.g. What environment is the game going to be played in, indoors or outdoors? What surface types will you be mounting the tags on? How much data do you need to encode onto the tags? etc. -- You

Re: [android-developers] detect if an app is launched

2012-06-27 Thread Kristopher Micinski
Sorry to say, but its not the perfect solution I need, coz I want information to be saved/stored only when any application starts or closes, (say browser app: started 1 time, closed 1 time), which should only be updated on launch or termination of app. The updation should not happen

Re: [android-developers] Top Developer?

2012-06-27 Thread Kristopher Micinski
On Wed, Jun 27, 2012 at 7:27 AM, Jose_GD jose.gonzale...@gmail.com wrote: Top developers now can respond to user comments in Google Play. Don't know of another benefit, besides being a kind of honorific badge among developers. But, would people who are top developers really *need* to respond

[android-developers] Access ANDROID console by application

2012-06-27 Thread chainz roid
Hi I am working with ANDROID ICS in Beaglebone. I'm running my executable(*.exe) file in android console by typing as below mentioned ./vcsSimpleStart -ms4. Now my beaglebone connecting with my windows machine so i can do it in android console(hyper terminal) easier. I want to do this in

Re: [android-developers] How can I open my app with power button?

2012-06-27 Thread Kristopher Micinski
You cannot do this under the current API, as there is no way to catch the power button. (Or home button, or ..., etc...) kris On Mon, Jun 25, 2012 at 1:36 PM, Andrea Fasciglione andreafa...@gmail.com wrote: It should be not clear, but how can i open my app with power button? I would add this

Re: [android-developers] Re: Help converting iPhone app to Android

2012-06-27 Thread danskr
The only problem is already having gone down the phonegap route, it's a little too late to learn a new system and rebuild from scratch. You live and learn though.. I was never expecting amazing performance, but its fairly simple app and its offered for free so I'm not massively concerned about

Re: [android-developers] Re: Help converting iPhone app to Android

2012-06-27 Thread danskr
I'm also getting this in the console but not really knowing what it means! [2012-06-27 14:16:43 - ddmlib] An established connection was aborted by the software in your host machine java.io.IOException: An established connection was aborted by the software in your host machine at

Re: [android-developers] detect if an app is launched

2012-06-27 Thread Narendra Singh Rathore
And, as multiple have mentioned, this will *not* be possible... Ok Kris, so does that mean, there is no other way to do what I want? -- 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] detect if an app is launched

2012-06-27 Thread Kristopher Micinski
As we said, you can poll it, but it's not recommended. Why do you need to do this? kris On Wed, Jun 27, 2012 at 9:21 AM, Narendra Singh Rathore nsr.curi...@gmail.com wrote: And, as multiple have mentioned, this will *not* be possible... Ok Kris, so does that mean, there is no other way

Re: [android-developers] detect if an app is launched

2012-06-27 Thread Narendra Singh Rathore
On Wed, Jun 27, 2012 at 7:01 PM, Kristopher Micinski krismicin...@gmail.com wrote: As we said, you can poll it, but it's not recommended. Why do you need to do this? Let me clarify you about my requirement. I actually want to monitor all the apps stored in the device, and retrieve their

Re: [android-developers] detect if an app is launched

2012-06-27 Thread Kristopher Micinski
On Wed, Jun 27, 2012 at 9:44 AM, Narendra Singh Rathore nsr.curi...@gmail.com wrote: On Wed, Jun 27, 2012 at 7:01 PM, Kristopher Micinski krismicin...@gmail.com wrote: As we said, you can poll it, but it's not recommended.  Why do you need to do this? Let me clarify you about my

Re: [android-developers] detect if an app is launched

2012-06-27 Thread Narendra Singh Rathore
But *why* do you want to do this. To display it to the user? Yes, to display it to the user. -- 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] Hide softKeypad from EditText is disabling copy,paste options.

2012-06-27 Thread santhosh
Hi, I want to hide SoftkeyPad from My EditText so i have used below code It hiding Softkey successfully. but it also hiding copy,paste option from Editor (on Android sdk 4.0.3) I want Copy,Paste option to be enable but softkeypad need to hide aways.

Re: [android-developers] detect if an app is launched

2012-06-27 Thread Kristopher Micinski
On Wed, Jun 27, 2012 at 9:49 AM, Narendra Singh Rathore nsr.curi...@gmail.com wrote: But *why* do you want to do this.  To display it to the user? Yes, to display it to the user. Then, yes, your only option is to use polling.. kris -- You received this message because you are

Re: [android-developers] detect if an app is launched

2012-06-27 Thread Narendra Singh Rathore
All right, I got my answer. Thanks all for directing me. -- 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] ViewFlipper

2012-06-27 Thread tarun sablok
Well this is not related to your queation Have you noticed that while flipping through the views ViewFlipper leaks a lot of memory. On Wed, Jun 27, 2012 at 12:05 PM, Narendra Singh Rathore nsr.curi...@gmail.com wrote: On Wed, Jun 27, 2012 at 12:36 AM, chandur mani

Re: [android-developers] free pdf download links about android programming

2012-06-27 Thread salmanul faris
Mention any free pdf download link about android programming which is easy to learn,simple to the beginners.. -- 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

Re: [android-developers] detect if an app is launched

2012-06-27 Thread Dan
Let me clarify you about my requirement. I actually want to monitor all the apps stored in the device, and retrieve their information (like how many times app is opened or closed. All that process of maintaining the record will start, when I first time install my app (which will show me

Re: [android-developers] Re: How to create a x509 certificate?

2012-06-27 Thread Simon Trigona
You can't create a certificate with the built in Bouncy Castle library. Unfortunately, you can't include the Bouncy Castle JAR in your android app because of a naming conflict. All hope is not lost. Find and use the Spongy Castle JAR. This is identical to Bouncy Castle but with a different

Re: [android-developers] Not allowing me to install SDK as java jdk is not being recognized

2012-06-27 Thread Justin Anderson
Did you install the 64-bit version of the JDK? I recall an error some time back where it didn't properly detect the 64-bit JDK. I thought they had fixed this, but maybe not. Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Wed, Jun 27, 2012 at 5:48 AM,

Re: [android-developers] Android Compass help

2012-06-27 Thread sajjan androiddeveloper
You have compass application already in android sample code.Have a look on that On Sun, Jun 24, 2012 at 2:52 AM, axesh ajmera ajmeraax...@gmail.com wrote: Hi Guys, I need your help on developing an android compass application.Here is the source code...I want to know if i am using

[android-developers]

2012-06-27 Thread Vijay Krishnan
Hi all, I have been developing some OCR(Optical Character Recognition) app.So,i want to process the image and remove the noise on the surface.If anyone knows about image processing,share ur knowledge. Thanks, vijay.k -- You received this message because you are subscribed to the

Re: [android-developers]

2012-06-27 Thread Justin Anderson
I have been developing some OCR(Optical Character Recognition) app.So,i want to process the image and remove the noise on the surface.If anyone knows about image processing,share ur knowledge. This doesn't have anything to do with Android. Thanks, Justin Anderson MagouyaWare Developer

[android-developers] leadbolt advertising

2012-06-27 Thread jigar patel
http://leadbolt.com/developers_signup.php?ref=10038893 -- 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] Re: leaked window again

2012-06-27 Thread Justin Anderson
It looks to me as if one of those dialogs is being created when the context is null, or at least invalid. That's kind of what I was thinking too... Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Tue, Jun 26, 2012 at 5:00 PM, G. Blake Meike

[android-developers] Re: Not allowing me to install SDK as java jdk is not being recognized

2012-06-27 Thread RichardC
When you get to the screen where it tells you that it cannot detect the Java SDK try this: - click the [Back] button - click the [Next] button This sometimes works to clear the problem. On Monday, June 25, 2012 12:06:05 PM UTC+1, Scharlto wrote: Good day all, Having an issue with

Re: [android-developers] Querying for system capabilities

2012-06-27 Thread Mark Murphy
On Wed, Jun 27, 2012 at 11:40 AM, Simon Giddings mr.s.giddi...@gmail.com wrote: In my activity I need to be able to query if the following services are available : phone call email internet browsing This is to ensure that I only provide these options when they exist on the device. For

[android-developers] Re: Need to create loop that will scan barcode until battery of device dies.

2012-06-27 Thread Nobu Games
http://developer.android.com/guide/components/activities.html http://code.google.com/p/zxing/wiki/ScanningViaIntent http://developer.android.com/training/monitoring-device-state/battery-monitoring.html -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Forgot Unlock Pattern

2012-06-27 Thread Pranav
Hi, I have Nexus S running ICS. I have pattern lock and have forgot my pattern. I've used up all the attempts and I'm not connected to the internet on my phone so recovering by logging into gmail doesnt work. Can anyone help me?? Thanks -- You received this message because you are subscribed

  1   2   >