[android-developers] Re: Black screen after switching to another app

2011-09-08 Thread MobileVisuals
Does anyone know what I can try to do to fix this issue? On Sep 7, 2:07 pm, MobileVisuals wrote: > I have already debugged the code lots of times with breakpoints, but I > can not find the cause for the black screen. The thread runs like it > should and no instances are null. > > On Sep 7, 10:30 

[android-developers] Re: How to read RFID tag using Nexus s device?

2011-09-08 Thread Adiga
Hi Mark, > http://developer.android.com/guide/topics/nfc/index.html Using this link , I can read MyFare Classic card , but unable to read RFID tags. On Sep 6, 5:25 pm, Mark Murphy wrote: > On Tue, Sep 6, 2011 at 8:16 AM,Adiga wrote: > >      How to read RFID tag using Nexus s device? If any one

[android-developers] Re: Inflating editext into AlertDialog...

2011-09-08 Thread sblantipodi
void alertInputStr(String title, String message, int numeroCampoEditabile) { AlertDialog.Builder alertI = new AlertDialog.Builder(this); final int num = numeroCampoEditabile; alertI.setTitle(title); alertI.setMessage(message); input = new EditText(this);

Re: [android-developers] custom viewgroup with a background.

2011-09-08 Thread TreKing
On Wed, Sep 7, 2011 at 11:58 PM, billconan wrote: > suppose I have a function named kkk > Why ... why would you name your function that ... ? > which overrides the function aaa, > That doesn't make sense. You can't override a function with a different name. Let's assume you meant "kkk" again.

Re: [android-developers] close button

2011-09-08 Thread Mark Murphy
On Wed, Sep 7, 2011 at 11:27 AM, Ali Alyassen wrote: > i have a close button in my project so i want if any one press these > button i want my app close Please don't. http://stackoverflow.com/questions/2033914/quitting-an-application-is-that-frowned-upon/2034238#2034238 -- Mark Murphy (a Commo

Re: [android-developers] Need your help: how to monitor the dialpad key press action in another application during an active call?

2011-09-08 Thread Mark Murphy
On Thu, Sep 8, 2011 at 1:28 AM, xavier wrote: > I know that I can't replace the default InCallScreen when the call has > been set up, but I really want to show some additional info during the > call, so I want to create one new activity which is transparent and > always above the default InCallScr

Re: [android-developers] Not an Overwhelmingly Positive First Impression

2011-09-08 Thread Mark Murphy
On Thu, Sep 8, 2011 at 12:31 AM, designteam wrote: > There are no compatible packages available from the Android > Repository. There are for tens of thousands of other developers. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog |

Re: [android-developers] How to enable and disable Broadcast Receiver

2011-09-08 Thread Mark Murphy
On Thu, Sep 8, 2011 at 4:36 AM, GopalaKrishnan D wrote: > How to enable and disable Broadcast Receiver If it is registered in the manifest via a element, use android:enabled for the initial state, plus PackageManager and setComponentEnabledSetting() to change it. -- Mark Murphy (a Commons Guy)

Re: [android-developers] Re: Copy a file from a Desktop PC

2011-09-08 Thread Mark Murphy
On Thu, Sep 8, 2011 at 4:01 AM, franky.b wrote: > Does the Android device at least appear as "External Storage Device" > in the file explorer when it is connected via USB? If the user elects to mount it, yes. With Honeycomb (and, presumably, future releases of Android), this will also require tha

Re: [android-developers] Re: android:inputType="number" Error

2011-09-08 Thread Duygu Kahraman
Thx for all reply but Karoly it is not working. Reason is integer 32 bit OK.but i couldnt enter any value like integer,biginteger..i am using just android:inputType="number","numberSigned"or"numberDecimal"? 2011/9/8 Károly Holczhauser > Hey dudo!:) > > Check this out please, this is what you a

Re: [android-developers] Some Questions Aabout Android DRM

2011-09-08 Thread Mark Murphy
On Thu, Sep 8, 2011 at 4:50 AM, weida shao wrote: > I want know that Will the Widevine DRM be native to all devices > running HoneyComb OS (e.g. we can deploy our app to any device running > HoneyComb without involvement from device manufacturers)? Since Widevine DRM is not open source, it is gua

Re: [android-developers] Prevent Time Changed by User

2011-09-08 Thread Mark Murphy
On Thu, Sep 8, 2011 at 5:25 AM, ndiiie 90 wrote: > - I have a countdown timer which is ticking until it counts to 0 (to a > specific time, lets say until 00 midnight) Why? > - It will tick correctly by calculating the destination time with user's > phone time If your goal is to get control when

Re: [android-developers] Android radio API ?

2011-09-08 Thread Mark Murphy
On Thu, Sep 8, 2011 at 5:34 AM, WolpTec wrote: > My phone gas a built-in radio app. Is there an API to acces that or is it > firmware which bypasses Android? It is part of the firmware accessing internal stuff. There are no APIs in Android related to FM radio or the like. -- Mark Murphy (a Comm

[android-developers] Re: Drawing To And Then Re-Using A Bitmap In A Map Overlay

2011-09-08 Thread kamiseq
hej, I noticed the same thing that draw method is called several times after zooming the map view and each time 0,0 coordinates are updated. and I noticed also that if I create my path and draw it to the bitmap for a first time when zoom change then shape is completely wrong (sometimes it is ok) so

[android-developers] Filenot found exception

2011-09-08 Thread vani reddy
Hi friends, I am getting the below exception java.io.FileNotFoundException: /mnt/sdcard/ (Permission denied) Also i have set the below permissions in the manifest android:name="android.permission.READ_EXTERNAL_STORAGE"/> How to gain access to sdcard ? Please reply its too urgent -- Regards, Van

[android-developers] Re: Once again the INSTALL_FAILED_INSUFFICIENT_STORAGE error

2011-09-08 Thread Palsson
Hey there, Thanks again for replying. I changed my configuration to boot from SD card, instead of NFS. When I do that, things are ok and I can install and debug via eclipse (adb ethernet). If the filesystem is NFS, the INSUFFICIENT_STORAGE error is triggered. /Palsson On Sep 7, 12:45 pm, NAVI NE

[android-developers] Re: Android 2.3.5 device cannot find my app

2011-09-08 Thread albnok
appel, could you try now? Copy-protection has been removed. I am curious though, why a 2.3.4 device is not a developer device, but the 2.3.5 device is... my 2.3.4 is rooted and I have no problems finding it. Venugopal, start your own topic, and stop spamming every other thread. -- You received

[android-developers] Re: Webviews side by side

2011-09-08 Thread Yahel
> I have two Webviews side by side, and, when one of them gets scrolled > vertically, I need to scroll the other. Second answer on Google for "Android webview scroll" : http://stackoverflow.com/questions/2238938/how-to-programmatically-scroll-android-webview Yahel -- You received this message

[android-developers] Webviews side by side

2011-09-08 Thread bob
I have two Webviews side by side, and, when one of them gets scrolled vertically, I need to scroll the other. Anyone know how to do this? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-develope

[android-developers] Android radio API ?

2011-09-08 Thread WolpTec
My phone gas a built-in radio app. Is there an API to acces that or is it firmware which bypasses Android? Searching the sdk resources only leads to terms as radiobuttons or groups, but I mean the real thing for listening to music. Hans -- You received this message because you are subscribed

[android-developers] device sometimes reboots

2011-09-08 Thread Hiko
Hello, I face below phenomenon sometimes. Procedure: 1. set livewallpaper as wallpaper on home screen. 2. back to the static wallpaper as well. 3. repeat 1-2 continuously. As the result, a device is rebooted. Livewallpaper is "Nexus" default pre-installed. static wallpaper is also default pre-in

[android-developers] Prevent Time Changed by User

2011-09-08 Thread ndiiie 90
Hi guys, I find a case about something that I can not resolve this problem: - I have a countdown timer which is ticking until it counts to 0 (to a specific time, lets say until 00 midnight) - It will tick correctly by calculating the destination time with user's phone time - But if user change th

[android-developers] Some Questions Aabout Android DRM

2011-09-08 Thread weida shao
Hi Everyone, I want know that Will the Widevine DRM be native to all devices running HoneyComb OS (e.g. we can deploy our app to any device running HoneyComb without involvement from device manufacturers)? Thanks! Best for your regards! -- You received this message because you are subscribed t

[android-developers] Re: Calendar: functional request

2011-09-08 Thread martypantsROK
works fine on my android phone. That's a pretty simple thing that nearly ALL calendars have had for years On Sep 6, 11:01 pm, Ivo Michiel wrote: > Simple feature request: > > Entering repeated calendar apointments is not possible on android > phones. > Is this "feature" planned? or could it be p

[android-developers] Re: Bluetooth signalling between phones?

2011-09-08 Thread MarcoAndroid
Well you can *detect* without near each other. But if you're trying to connect, then you have to pair and the user has to agree. Would be a security risk I guess, if you were able to connect to devices w/o people knowing/acknowledging. On 7 sep, 23:27, Droid wrote: > I want to make a bluetooth ap

[android-developers] same app one tablet and phone with differnt gui

2011-09-08 Thread Károly Holczhauser
Hello Sisters and Brothers!:) I have a little noise in my brain about the different xml layouts type depends on screen, if anyone would help to make it clear, I`m becoming so greatful:) I have to write an application which have to run on tablet and on phone too. It is not a problem, because I wo

[android-developers] Re: Developing first Android app from iOS

2011-09-08 Thread martypantsROK
you'll need to make a listview with each item selectable. Once selected, you will initiate an activity that will display the details of that selection. Checkout out the "Notepad" tutorial on http://developer.android.com/index.html On Sep 7, 6:58 am, Dan Uff wrote: > Hi all: > I have been an iOS

[android-developers] Re: How can i run javascript alerts in android code?

2011-09-08 Thread martypantsROK
you might check out http://droidscript.se/ for running javascript on your device On Sep 7, 6:31 pm, venugopal reddy wrote: > How can i run javascript alerts in android code? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to th

[android-developers] Re: Listview with image data from database

2011-09-08 Thread martypantsROK
A SimpleCursorAdapter does have the smarts to handle images. You will need to write a custom adapter that expect images (bitmaps) and will display them. At a minimum your adapter will have to redefine "getView" and return a view upon completion. On Sep 7, 8:53 pm, Atluri ajith wrote: > Hi, > > i

[android-developers] Re: android:inputType="number" Error

2011-09-08 Thread Károly Holczhauser
Hey dudo!:) Check this out please, this is what you are looking for? http://androidblogger.blogspot.com/2009/01/numeric-edittext-and-edittext-with-max.html Bye, Károly On szept. 8, 08:40, Duygu Kahraman wrote: > Hi All; > > I have a problem about Edittext.I want to enter just number one of my

[android-developers] Re: Git and source code

2011-09-08 Thread martypantsROK
not without some code we can't. Try posting code when you have a question and you are likely to get some help. On Sep 8, 4:52 am, Tushar Sahni wrote: > Hi > > I am getting cursor out of bound exception while i am trying to get list > particular item positiion,Below is the crash report i am gettin

[android-developers] Re: kokao Talk

2011-09-08 Thread martypantsROK
First. Get some friends. Then add their phone number. On Sep 8, 1:08 pm, nageswara rao rajana wrote: > Hi, > >         I installed kokao Talk in my mobile, please tell me how to add > friends. -- You received this message because you are subscribed to the Google Groups "Android Developers" grou

Re: [android-developers] Re: android:inputType="number" Error

2011-09-08 Thread Duygu Kahraman
hmm ok. How can i road to fix my problem? in my edittext user must enter 12 characters.I must change type in xml or i must write code project for it? 2011/9/8 Macotonalds > maybe it's because of the Integer.MAX_VALUE that is 2147483647. > > > On Sep 8, 3:40 pm, Duygu Kahraman wrote: > > Hi A

[android-developers] How to enable and disable Broadcast Receiver

2011-09-08 Thread GopalaKrishnan D
How to enable and disable Broadcast Receiver i don't how to pass value to onreceieve any one help me -- ~* Regards* *GopalaKrishnan D* -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-deve

[android-developers] Re: android:inputType="number" Error

2011-09-08 Thread Macotonalds
maybe it's because of the Integer.MAX_VALUE that is 2147483647. On Sep 8, 3:40 pm, Duygu Kahraman wrote: > Hi All; > > I have a problem about Edittext.I want to enter just number one of my > Edittext  so in xml i use android:inputType="number" .But When i want > to more than 10 characters progra

Re: [android-developers] Android Emulator starting Problem

2011-09-08 Thread Rathna Kumara Premadasa
Ok thanks for your help.. Thanks -- *Rathna Kumara Premadasa* Sri Lanka. -- 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,

[android-developers] Re: Copy a file from a Desktop PC

2011-09-08 Thread franky.b
Ok, bad luck :( Does the Android device at least appear as "External Storage Device" in the file explorer when it is connected via USB? So it would be possible to figure out the drive letter of that storage volume and to do a common file copy in the desktop application? Regards, Frank On Sep 7,

[android-developers] Re: close button

2011-09-08 Thread Pent
> > i have a close button in my project so i want if any one press these button > > i want my app close Set a View.onClickListener on the button and call finish() in its onClick function. > Good for you. Thanks for letting us know. Please keep us posted as you add > other buttons. You should res

Re: [android-developers] Re: [ASK] HOW TO SEND LONGITUDE & LATITUDE TO ANOTHER ANDROID PHONE VIA INTERNET..

2011-09-08 Thread Phạm Văn Qua
Thanks -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more options,

[android-developers] Re: can i able to play video using FFmpeg api.

2011-09-08 Thread Robert Willems
After asking a million times i would have to answer: No, apparently *you* can't. On Sep 7, 11:44 am, NAVI NEW wrote: > can i able to play video using FFmpeg api. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send

[android-developers] Creating a DRM Wrapper around an Android app/game

2011-09-08 Thread Arpan
I have a few games around which I would like to build a DRM Wrapper. The wrapper will basically check with my subscription engine if the user subscription is still valid. A user can download and play game for a few days (maybe on trial) and if s/he finds it interesting then can proceed to buy it c

[android-developers] Not an Overwhelmingly Positive First Impression

2011-09-08 Thread designteam
I've been using Eclipse-based IDEs since 2000 (WSAD - pure Eclipse since 2004), i.e., NOT a Newb. Install is "Eclipse Classic" (been doin' Java since '99) with plug-ins PHPEclipse, Aptana, and Subclipse. The instructions to do the "Hello World" app start... # n the Android SDK and AVD Manager, cho

[android-developers] from autolink text to my custom Activity

2011-09-08 Thread 34657...@qq.com
I have a string like this:"Hello! I'm Wincent. My phone number is 12345678910. My website is http://www.google.com. And My email is winc...@gmail.com". When I use textview.setText(s); textView.setAutoLinkMask(Linkfy.ALL); I can click phone number , url , then system will lauch Contactors, Browsers.

[android-developers] Various Twitter Android Apps can use the same Consumer key & Consumer secret Key for use with Oauth login on twitter?

2011-09-08 Thread saex
Various Twitter Android Apps can use the same Consumer key & Consumer secret Key for use with Oauth login on twitter? Wich issues can exist with this? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to and

[android-developers] Re: How to obtain the tweets of a programatically given Twitter user without registering my app on dev.twitter.com?

2011-09-08 Thread saex
You can use the same key & secret key in a lot of apps? or you have to get a new key for each app? On 8 sep, 01:49, albnok wrote: > It is very much possible to get tweets from a user without logging in, > provided that user did not set tweets to private. > > https://dev.twitter.com/docs/api/1/get

[android-developers] Re: .asec files

2011-09-08 Thread JonFHancock
You dont have to worry about that. Once you purchase an app on the android market, you own it forever regardless of how many eevices you have. Just go to the market on the new phone and download it. Do make sure that you set up your new phone with the same google account that you used for the ol

[android-developers] Re: Live wallpaper thumbnail 208x192?

2011-09-08 Thread James W
There doesn't appear to be any official documentation on the required size. However, from my testing on the emulator and real devices, it seems that the clearest/sharpest thumbnail images are obtained by doubling the resolution of the icon size for each density. So for HDPI which has an icon size

[android-developers] After capture image from camera activity not update in android 3.1

2011-09-08 Thread kalpana chaurasia
In my app I have a Capture image from camera code using Intent intent = new Intent("android.media.action.IMAGE_CAPTURE"); And it's working fine in all android 2.2, 2.3 but in 3.1 data get null from onActivityResult(). But image store in sdcard. Thanks. -- You received this message because you are

<    1   2