Re: [android-developers] How to develop an app that involves google maps

2011-09-09 Thread Michael Banzon
The sign up page tells you how to obtain the MD5 fingerprint: http://code.google.com/android/maps-api-signup.html Use "keytool"... On Sat, Sep 10, 2011 at 8:52 AM, Mohit Agarwal wrote: > Hello > This is the first time i m developing an app... > I need to know from where to get my api key..

[android-developers] How to develop an app that involves google maps

2011-09-09 Thread Mohit Agarwal
Hello This is the first time i m developing an app... I need to know from where to get my api key.. i went on to the site getting an api key, it asks me MD5 fingerprint(wat's This??) how to get MD5 fingerprint... pls help.. -- You received this message because you are subscribed to the Googl

Re: [android-developers] Re: Read NfcA card

2011-09-09 Thread Michael Roland
Hallo, > I need to read and write ISO 14443-4 smart card . In this case you won't need NfcA at all. You only need the IsoDep class. In general you shouldn't care whether your IsoDep card uses NfcA or NfcB as low-level technology. > I had used > "mTechLists = new String[][] { new String[] > { Nf

[android-developers] Re: 90 Degrees Radial Gradient

2011-09-09 Thread skink
On Sep 9, 11:23 pm, LackeySoft wrote: > Take a look at SweepGradient... Yes, you are right, of course I mistook radial gradient for sweep one: SweepGradient( float cx , float cy, int[] colors, float[] positions ) pskink -- You received this message because you are subscribed to the Google G

[android-developers] Picture and video is rotated after HTTPPost

2011-09-09 Thread perumal316
Hi All, I am using the necessary intents (ACTION_IMAGE_CAPTURE etc) to take picture and video which I used HTTPPost to send to a backend server (running java servlet). One thing i noticed is that after the image and video are sent, over at the server side it is rotated 90 degrees clockwise. Is t

Re: [android-developers] Dialog dismiss()

2011-09-09 Thread TreKing
On Fri, Sep 9, 2011 at 8:24 PM, Greg Donald wrote: > Also tried it without the dismissDialog() call in onDestroy(). > > The exceptional condition is: > > 09-09 20:05:12.626: ERROR/AndroidRuntime(3831): Caused by: > java.lang.IllegalArgumentException: no dialog with id 0 was ever shown > via Activ

[android-developers] hiding keyboard after button press

2011-09-09 Thread martypantsROK
OK, so I have an activity that expects from 2 to 6 numeric inputs. When the user has finished, a button is pressed to initiate processing and then intermediate results are displayed. The problem is that I can't get the keyboard to disappear and it covers up the Scrollable area where the results are

Re: [android-developers] Android App

2011-09-09 Thread Appaholics
What should wed do about it? On Fri, Sep 9, 2011 at 1:44 PM, Dips wrote: > Hello, > > Please have a look on > > > https://market.android.com/details?id=com.storychimes.threepigs2&feature=search_result > > I want to create an App in android for reading E-pub in device...like > a given link > > >

Re: [android-developers] Problems with deactivating the title bar

2011-09-09 Thread Appaholics
Could you post the LogCat output? On Fri, Sep 9, 2011 at 8:20 PM, Felix Schröter wrote: > Hi everyone, > I´m 15 years old (in a few weeks 16) and I´m very new to Android and Java > and at the moment I just copy and past, but I want to learn the language > Java complete but later. > So my Problem:

[android-developers] Re: Outgoing Number Broadcast Receiver.

2011-09-09 Thread lb
After looking at the logs little more I see the following in emulator V/OutgoingCallBroadcaster( 140): Broadcasting intent Intent { act=android.intent.action.NEW_OUTGOING_CALL (has extras) }. Where as in HTC EVO 4G I don't see the above log. And one more difference is that I do not find the numb

Re: [android-developers] Dialog dismiss()

2011-09-09 Thread Greg Donald
On Thu, Sep 8, 2011 at 2:29 PM, TreKing wrote: > Or use showDialog() / dismissDialog(). I tried this and it's actually worse now. It crashes everytime I rotate, not just occasionally like before. My pattern looks like this now: private static final int DIALOG_GAMES = 0; final Runnable upd

Re: [android-developers] Listview getting started

2011-09-09 Thread Skip Morrow
TreKing, thank you so much. I understand your answer and I will proceed that way. -- 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

Re: [android-developers] Re: How reliable is Google Marketplace

2011-09-09 Thread Jim Graham
On Fri, Sep 09, 2011 at 04:22:37PM -0700, MarkG123 wrote: > I havn't bothered with those crappy supermarket Android 2.2 "tablets" Remind me never to bother with any app you ever release, whether for my Android phone (Motorola Bravo MB520) OR for my Android tablet (Archos 101 Internet Tablet). Of

[android-developers] Re: Webview android

2011-09-09 Thread IcedNet
I looked at xui before giving in and writing all the javascript by hand... on the other hand, the html5 and css3 are useful, though I haven't tried the Canvas object. if you're good with javascript and Canvas works, you might be better off... The libraries usually do a lot of the work for you, bu

[android-developers] Re: Serial Port Connectivity

2011-09-09 Thread Howard M. Harte
Yes, take a look at the Bluetooth Chat example and change the UUID to the one for the Bluetooth SPP profile. -Howard On Sep 9, 1:15 am, parasnath wrote: > I have an twitter app.I want to open my twitts in hyper > terminal(Serial port). when I click on my twitter app,then all  twitts > will be sh

[android-developers] Re: How reliable is Google Marketplace Device Compatibility Report?

2011-09-09 Thread MarkG123
Anything pre Honeycomb 3.2 will fall into the else: return (getResources().getConfiguration().screenLayout & Configuration.SCREENLAYOUT_SIZE_MASK) >= Configuration.SCREENLAYOUT_SIZE_XLARGE; My testing so far seems to work on all the platforms I tried. I havn't bothered with those crappy supermar

Re: [android-developers] Re: How reliable is Google Marketplace Device Compatibility Report?

2011-09-09 Thread Dianne Hackborn
This will probably crash on older version of the platform, where smallestScreenWidthDp isn't defined. Is suggest using reflection to retrieve that. On Fri, Sep 9, 2011 at 3:24 PM, MarkG123 wrote: > This is what I am using now to have a my single APK support tablets > and smartphones on-the-fly.

[android-developers] Re: Bluetooth sync fails.

2011-09-09 Thread darrinps
I've had to do a lot of research with Bluetooth recently (trying to connect to a non-Android device and haven't had any luck at all...may be a flaw is the other Device's adherence to the spec perhaps). Anyway, in doing my research I ran across someone complaining about a situation similar to yours.

[android-developers] Re: How reliable is Google Marketplace Device Compatibility Report?

2011-09-09 Thread MarkG123
This is what I am using now to have a my single APK support tablets and smartphones on-the-fly. I use if from my start activity, which decides which activity to use (my app differences are more than just layout). public boolean isTablet() { if (Build.VERSION.SDK_INT >= Build.VERS

Re: [android-developers] Listview getting started

2011-09-09 Thread TreKing
On Fri, Sep 9, 2011 at 9:22 AM, Skip Morrow wrote: > So, here's my problem. I know you cannot create an activity at runtime. And > that's exactly what I have described. > Doesn't sound like it to me. > The main menu and each submenu would be a unique activity in Android. > No it wouldn't. An A

[android-developers] Re: PARTIAL_WAKE_LOCK and thread running in a service

2011-09-09 Thread nexbug
Get the lock in the oncreate of the service and release it at the end of the thread On Sep 9, 4:41 am, Evelyon wrote: > I have got a service which runs a thread. The thread save some data in > a file (in the sdcard). When Android goes to sleep, I need that the > service and the thread continue ru

Re: [android-developers] Stuck in developing application

2011-09-09 Thread TreKing
On Fri, Sep 9, 2011 at 2:48 AM, parasnath wrote: > I want to read this file from code,line by line.so can I read this. > Google "Java IO" - TreKing

Re: [android-developers] how to change battery charging animation

2011-09-09 Thread Dianne Hackborn
If you are talking about the graphics on the screen when plugged in and the device is actually turned off... this is not part of Android at all, it is something some manufacturers (actually I only know of one) do in their low-level firmware. On Thu, Sep 8, 2011 at 8:16 AM, sarika wrote: > Hello

[android-developers] Re: 90 Degrees Radial Gradient

2011-09-09 Thread LackeySoft
Take a look at SweepGradient... -- 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...@googlegrou

[android-developers] How to deal with expensive view height calculation?

2011-09-09 Thread Ted Hopp
I asked this question on SOa month ago but got no answer. Maybe I'll have better luck here. :) I keep running into a sizing and layout problem for custom views and I'm wondering if anyo

[android-developers] keyboard touch even is ALWAYS intercepted, even when it shouldn't be.

2011-09-09 Thread Saied
Hello, I have created an alternative keyboard (MessagEase, on the market) that does NOT use the entire lower part of the screen. It can be configured to use only a small, squarish area on the lower left, right or center, leaving the unused screen area visible and hopefully useful for the user. Th

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

2011-09-09 Thread sblantipodi
Probably if you don't have anything else to add there is someone else that have something to add and that can help us, I hope. On Sep 9, 10:10 pm, TreKing wrote: > On Fri, Sep 9, 2011 at 2:55 PM, sblantipodi > wrote: > > > you asked, the problem is? > > > I answered: > > that it doesn't show the

[android-developers] Re: Android + SQLite - Brazilian student

2011-09-09 Thread guich
Ola, Porque voce nao experimenta o TotalCross? www.totalcross.com.br abraços, Guilherme On 8 set, 21:21, Andrews wrote: > hi i am a student from Brazil and I am studying android. I would ask > if you could > share a material on Android and sqlite (CRUD). Thank you all -- You received th

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

2011-09-09 Thread TreKing
On Fri, Sep 9, 2011 at 2:55 PM, sblantipodi wrote: > you asked, the problem is? > > I answered: > that it doesn't show the softkeyboard automatically on android 2.3 or > older when the alert is shown also if the editext is selected by > default. > it does show the softkeyboard on android 3.2. > A

Re: [android-developers] custom launcher limitations?

2011-09-09 Thread Mark Murphy
On Thu, Sep 8, 2011 at 10:14 AM, dazed3confused wrote: > I just wanted to ask the group, I have been working on a custom > launcher which has been going rather well. I was wondering however, if > from the launcher app would it be possible to stop other apps on the > phone from loading data into th

Re: [android-developers] how to change battery charging animation

2011-09-09 Thread Mark Murphy
On Thu, Sep 8, 2011 at 11:16 AM, sarika wrote: >       Can anyone tell me how to change the battery charging animation > i.e. ''...the animation that you see when your phone is turned off and > you plug the usb cable into a power source..." ? This can only be modified through custom firmware, if

Re: [android-developers] Re: java Thread class vs Android HanderThread: which is better?

2011-09-09 Thread Miguel Morales
Also, and correct me if I'm wrong. AsyncTask uses an internal threadpool to balance background requests. This is really useful if you making many network calls at once but don't want to start a new thread for each one. Also, you do get slightly better performance because with AsyncTask the threads

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

2011-09-09 Thread sblantipodi
you asked, the problem is? I answered: that it doesn't show the softkeyboard automatically on android 2.3 or older when the alert is shown also if the editext is selected by default. it does show the softkeyboard on android 3.2. I can't belive that on a OS defined smart it is not possible to prom

Re: [android-developers] in-App Printing within Android

2011-09-09 Thread Mark Murphy
On Thu, Sep 8, 2011 at 1:40 PM, Alex Duhamel wrote: > Within my app I'd like to be able to allow users to print various reports > (formatted subsets of queries from SQLite database).  Google Cloud Printing > seems too complicated an option for widespread user base.  Any suggestions? Generate PDFs

Re: [android-developers] Re: java Thread class vs Android HanderThread: which is better?

2011-09-09 Thread Pratik Prajapati
yup. got it. Thanks On Fri, Sep 9, 2011 at 11:12 AM, Doug wrote: > On Sep 7, 8:52 pm, Pratik Prajapati > wrote: > > Android documentation says that "consider > > usingAsyncTask< > http://developer.android.com/reference/android/os/AsyncTask.html> > > or HandlerThread< > http://developer.android

[android-developers] Re: onTouchEvent method is not working

2011-09-09 Thread DangerDaku
When you drag, ACTION_MOVE actions are called over a specific interval depending on the device (~20ms)... its possible that these are the gaps you are seeing on the emulator. On Sep 8, 7:47 am, Anoop Singh wrote: > I am working on a drawing application. When I touch on screen > primitive is drawi

Re: [android-developers] Re: Webview android

2011-09-09 Thread Christian Bianchini
Yes I enabled the JS, I tried to setup a webclient or a chromeclient but nothing is changed. I don't know why but the native webkit engine isn't so cool than firefox, this is a big surprising for me because Chrome is a very good Browser... There is any library ? On Fri, Sep 9, 2011 at 9:22 PM,

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

2011-09-09 Thread TreKing
On Fri, Sep 9, 2011 at 1:52 PM, sblantipodi wrote: > I'm searching a fix to this problem since 15 days and you tell me to read > the docs. > Well I'm not sure what else to tell you - if you are asking about how to "inflate an edittext into the dialog using views.", well this is covered quite thor

[android-developers] Re: Webview android

2011-09-09 Thread IcedNet
You are enabling JavaScript in the WebView, yes? If so, and you still have problems, I would invite you to browse around with Android's "Browser" to the various library sites' demo pages and watch the fail unfold... It has issues with many things, JavaScript included. It is the public facing vers

[android-developers] Re: signature recording

2011-09-09 Thread Jeremy Dagorn
Hi, Yes, it is possible by using different things : Canvas, Paint, Path, and you could store the signature as a picture in your external storage, or directly as a file of your application. You should look at the following URL : http://developer.android.com/resources/samples/ApiDemos/src/com/examp

[android-developers] Re: Webview android

2011-09-09 Thread Jeremy Dagorn
Hi, Look at the documentation, there is a simple example about how to load an URL from a WebView! http://developer.android.com/resources/tutorials/views/hello-webview.html Best, On Sep 9, 11:53 am, Christian Bianchini wrote: > I have a problem with webview, I tried to use thehttp://raphaeljs.co

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

2011-09-09 Thread sblantipodi
Lol, giving this kind of suggestion is always funny. I'm searching a fix to this problem since 15 days and you tell me to read the docs. I don't know if smile or cry :D On Sep 9, 6:39 pm, TreKing wrote: > On Fri, Sep 9, 2011 at 11:24 AM, sblantipodi > wrote: > > > how? > > Try reading the docume

Re: [android-developers] Uninstalling Running Application.

2011-09-09 Thread Dianne Hackborn
It is immediately killed and removed. The app can not be involved in that. On Thu, Sep 8, 2011 at 7:10 AM, sangram wrote: > Hello, > I wanted to know what happens when I try to uninstall an > ACTIVE(RUNNING) application. Does that application get any > notification? How the packagemanager handl

[android-developers] Re: 90 Degrees Radial Gradient

2011-09-09 Thread skink
On Sep 9, 1:45 pm, sposnjak wrote: > Hi all! > > I am working on a custom View that shows a (round) gauge. I would like > to make the background of the scale to go from green to yellow to red > (270 degree scale) to black. The problem I am facing is that I can not > figure out how to make a 90 d

[android-developers] Re: Option to unlock the boot loader for Sony Ericsson Android Gingerbread phones now available.

2011-09-09 Thread hatcyl
Sony Ericsson, I think we Verizon Xperia Play customers deserve an explanation. Quotes from http://unlockbootloader.sonyericsson.com/ [QUOTE] We strongly recommend that standard users NOT unlock the boot loader, as it is not needed. We are proud to deliver great phone experiences through our rigo

[android-developers] Bitmap Input to eglCreateImageKHR

2011-09-09 Thread shathie
Hi, I am considering to speed-up of Skia's drawBitmap. I would like to consider using OpenGL for it. Is there a possibility of Skia's drawBitmap by OpenGL. Normally, OpenGL needs loading texture before drawing. But loading texture takes a lot of times. So i hope to try a method of drawing texture

[android-developers] Get views and widgets of activities in a default android applications (Settings, contacts etc)

2011-09-09 Thread ajay
Hi, I am already feeling great to be a member of this group. I am new to android development. I am trying to do a project which will read the different layouts, views and all other resource in when an activity is opened. Can we write an application which will have a service that will continuous

[android-developers] Android Query

2011-09-09 Thread Megha
Hi, I have tried following code for reading epub file created by using pdf to epub converter,but i didnt got the content of file as output so kindly solve my problem package net.learn2develop.Eread; //import java.awt.print.Book; import java.io.FileInputStream; import java.io.FileNotFoundExce

[android-developers] Re: can you switch screen orientation via an app?

2011-09-09 Thread mellery451
On Sep 8, 1:42 pm, Jim Graham wrote: > > Does anyone know if this is possible?  And if so, can you point me to > the right terms to search for in the dev guide?  I've only got a few > days to write this before I have to go into the hospital for cancer > surgery, and I'd like to have it working b

[android-developers] Re: Is it possible to use MonkeyRunner from java

2011-09-09 Thread Case B
Hello Bill, Is this ChimpChat.jar available? I can't seem to find it. I have SDK Tools r12. Also, will this ChimpChat allow for loading IMonkeyImage's from disk? I see that it is currently only supported in Python and not when writing test scripts in Java. My overall goal is to write a script

[android-developers] in-App Printing within Android

2011-09-09 Thread Alex Duhamel
Within my app I'd like to be able to allow users to print various reports (formatted subsets of queries from SQLite database). Google Cloud Printing seems too complicated an option for widespread user base. Any suggestions? Any print functionality being released in future versions in order to ke

[android-developers] Re: Is it possible to use MonkeyRunner from java

2011-09-09 Thread Case B
Hello Bill, When will this ChimpChat.jar be available? Also, will it include functionality to load IMonkeyImage's from disk to compare with current screenshots? I noticed this is currently not supported in Java, but is in Python. On Aug 22, 1:42 pm, Bill Napier wrote: > We re-factored a bunch

[android-developers] Uninstalling Running Application.

2011-09-09 Thread sangram
Hello, I wanted to know what happens when I try to uninstall an ACTIVE(RUNNING) application. Does that application get any notification? How the packagemanager handles such scenario? Does the onDestroy method get called for the current activity/service of the active application? Thanks, Sangram -

Re: [android-developers] log disappears

2011-09-09 Thread Tod
I met this several time too Original Message From: bob Time:Thu, 08 Sep 2011 11:59:40 +0530 To: Android Developers CC: Subject: [android-developers] log disappears Anyone know why sometimes the log disappears in the Eclipse log window? -- You received this message because yo

[android-developers] Creating Groups in contacts application

2011-09-09 Thread mahantesh bhushetty
Hi, I want to customize the Contacts application provided in the 2.3.3 Gingerbread source code. I want to add the grouping option for the contacts. Could anyone suggest on how to go about? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. T

[android-developers] Get views and widgets of activities in a default android applications (Settings, contacts etc)

2011-09-09 Thread ajay
Hi, I am already feeling great to be a member of this group. I am new to android development. I am trying to do a project which will read the different layouts, views and all other resource in when an activity is opened. Can we write an application which will have a service that will continuous

[android-developers] Contact fields infor in android phones

2011-09-09 Thread SwatiGaur
Hi, Whats the way to find out about what fields for a contact are supported on an android phone? Any database where they are stored or need to query the contact application? Regards, Swati -- You received this message because you are subscribed to the Google Groups "Android Developers" group. T

[android-developers] TrafficStats.getMobileRxBytes() and TrafficStats.getMobileTxBytes() reset very frequently on 3.0.1 Honeycomb

2011-09-09 Thread nav
Hi While trying the traffic stats API, TrafficStats.getMobileRxBytes() and TrafficStats.getMobileTxBytes() on Android 3.0.1 (on my Galaxy Tab 10.1), i noticed that the stats reported by the APIs reset very frequently. This makes it impossible to monitor Cellular data sent and received by the phon

[android-developers] setting outgoig call to an mp3 file

2011-09-09 Thread raghu
hi i want to make an app when you receive an incoming call.it will accept the incoming call and in reply to this call an mp3 file will be played in place of user response. but not heard to the user.only listenable to the user who is calling.is it possible to control the output voice in android?? -

[android-developers] Samsung Galaxy Tablet messes up co-ordinates when scrolling

2011-09-09 Thread Novice Developer
I am developing a web-application which needs to work on Android browser. In some pages, the application has links to navigate on other parts of the same page. The links work fine in non-mobile browsers, but messes up on Android browser on Samsung Tablet. The problems appear only when we do som

[android-developers] Re: ADB could see Samsung Galaxy Tab 10.1 but now it can't!

2011-09-09 Thread mellery451
I have often had to restart the adb daemon on my ubuntu box with root privs. - so often, in fact, that I have a little shell script with the following commands: /opt/android/android-sdk-linux_86/platform-tools/adb kill-server /opt/android/android-sdk-linux_86/platform-tools/adb start-server ...w

[android-developers] Webview android

2011-09-09 Thread Christian Bianchini
I have a problem with webview, I tried to use the http://raphaeljs.com/ library but was working only on my computer. I tried to use the browser and doesn't work as well. I tried to download Firefox on my phone and it's work! Anyone can suggest me any idea? I would like to use a webview of Firefox

[android-developers] Problems with deactivating the title bar

2011-09-09 Thread Felix Schröter
Hi everyone, I´m 15 years old (in a few weeks 16) and I´m very new to Android and Java and at the moment I just copy and past, but I want to learn the language Java complete but later. So my Problem: I didn´t deavticate the title bar in the manifest, because I have an ProgessBar to show how long

[android-developers] Listview getting started

2011-09-09 Thread Skip Morrow
I haven't written even a single line of my first android app, but I have been programming C# and other languages for a while. I have read many of the tutorials, and I think I have a plan of action for my first app. My first app will be a home automation controller which will be driven entirely

[android-developers] Help Understanding Security Exception

2011-09-09 Thread mellery451
Hello, I'm looking for some advice understanding the cause of the following exception in my app: Caused by: java.lang.SecurityException at android.os.BinderProxy.transact(Native Method) at android.os.ServiceManagerProxy.addService(ServiceManagerNative.java: 146) at android.os.Servi

[android-developers] Sliding/moving fragments (like Gmail and Email app) in Honeycomb

2011-09-09 Thread Chris
How can I recreate the layout animation affects you see in the Gmail app on Android 3.0+ where clicking on an email in the ListView shifts and shrinks the ListView to the left, then shows the email contents on the right. I know you can use PropertyAnimators, ObjectAnimators, etc., but these don't

[android-developers] PARTIAL_WAKE_LOCK and thread running in a service

2011-09-09 Thread Evelyon
I have got a service which runs a thread. The thread save some data in a file (in the sdcard). When Android goes to sleep, I need that the service and the thread continue running. I tried it with a PARTIAL_WAKE_LOCK, but it doesn't work; the thread stops while Android is sleeping. Other locks like

[android-developers] 90 Degrees Radial Gradient

2011-09-09 Thread sposnjak
Hi all! I am working on a custom View that shows a (round) gauge. I would like to make the background of the scale to go from green to yellow to red (270 degree scale) to black. The problem I am facing is that I can not figure out how to make a 90 degree radial gradient - to be specific I would li

[android-developers] Android App

2011-09-09 Thread Dips
Hello, Please have a look on https://market.android.com/details?id=com.storychimes.threepigs2&feature=search_result I want to create an App in android for reading E-pub in device...like a given link -- You received this message because you are subscribed to the Google Groups "

[android-developers] Stuck in developing application

2011-09-09 Thread parasnath
Hello I have created an application in Android.where there is a PDf file which I converted into the Epub File I want to read this file from code,line by line.so can I read this.Please help me. Thankyou in advance -- You received this message because you are subscribed to the Google Groups "And

[android-developers] Image in ListView flicks when calling notifyDataSetChanged method.

2011-09-09 Thread Bhavin
I have a listview, extended from BaseAdapter. I have implemented a functionality of a never ending list, when user reaches at the end of the list, adapter fetches new rows from internet. I also load images in each row, they also come from internet. I use AsyncTask to load images asynchronously. Wh

[android-developers] Serial Port Connectivity

2011-09-09 Thread parasnath
I have an twitter app.I want to open my twitts in hyper terminal(Serial port). when I click on my twitter app,then all twitts will be show on my hyper terminal.via a bluetooth.Can I do this. Please help me. -- You received this message because you are subscribed to the Google Groups "Android De

[android-developers] sms based app for field data collection

2011-09-09 Thread akash k
hi, every body, iam develoing an application Field user will send the data from a remote place through the sms and that data has to be submitted to the server in the sql or oracle on the computer. how to accomplish this task. write now Iam able to send the data to another mobile. but not able to

[android-developers] Help Understanding Security Exception

2011-09-09 Thread mellery451
I'm seeking some help in understanding the possible reasons of the following error : Caused by: java.lang.SecurityException at android.os.BinderProxy.transact(Native Method) at android.os.ServiceManagerProxy.addService(ServiceManagerNative.java: 146) at android.os.ServiceManager.ad

[android-developers] how to change battery charging animation

2011-09-09 Thread sarika
Hello, Can anyone tell me how to change the battery charging animation i.e. ''...the animation that you see when your phone is turned off and you plug the usb cable into a power source..." ? Regards Sarika -- You received this message because you are subscribed to the Google Groups "Andro

[android-developers] how to prevent select element option text from overflowing to down arrow in WebView

2011-09-09 Thread Joe Hudson
Hello, I'm using a WebView to display html content within an android app. I've got a select element (dropdown) that has an option with text that is longer than the element itself. In this case the text goes past the separator line and into the right part where the down arrow is. Is there any

[android-developers] Memory Usage and Garbage Collection issues on 1.6 and 2.1

2011-09-09 Thread hooked82
I'm checking my app for Memory Leaks/Usage and came across something weird that I've only seen so far in Android 1.6 and 2.1. After clicking around in the app a bit and I run "adb shell dumpsys meminfo" for my application, I see the following: DUMP OF SERVICE meminfo: Applications Memory Usage (kB

[android-developers] TrafficStats.getMobileRxBytes() and TrafficStats.getMobileTxBytes() reset very frequently on 3.0.1 Honeycomb

2011-09-09 Thread nav
Hi I have noticed a problem on my Samsung Galaxy 10.1. The APIs to get mobile data sent and received, namely TrafficStats.getMobileRxBytes and TrafficStats.getMobileTxBytes reset very frequently, making it impossible to monitor 3G data usage through my test App. Has anyone faced the same prob

[android-developers] signature recording

2011-09-09 Thread markmcg
Hi, Is it possible to record a user's signature if they use a stylus and write onto screen? -- 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 g

[android-developers] Android + SQLite - Brazilian student

2011-09-09 Thread Andrews
hi i am a student from Brazil and I am studying android. I would ask if you could share a material on Android and sqlite (CRUD). Thank you all -- 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] Working with WiFi

2011-09-09 Thread chandu.....
Hi I want to create a Wifi application for android which can scan and connect to particular access point( when you click on that Accesspoint). Up to now I created a Listview which can show list of access points. now by clicking on anyone network( Item) I want to connect to it. what I have to do no

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

2011-09-09 Thread dusty
have it go to an xml test page before you test it with the GLSurfaceView. This is what i do to test the application and then when everything is changing between the pages then implement your GLSurfaceView. On Sep 8, 8:03 am, MobileVisuals wrote: > Does anyone know what I can try to do to fix thi

[android-developers] Get "2G only state" in android

2011-09-09 Thread Mukhammad Wildan
Dear all.. Anyone know how to get network selection mode in android? (2G only, 3G only, auto) 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 unsubscr

[android-developers] Out Of Memory Error with Images loaded through XML

2011-09-09 Thread Sorab Pithawala
Hi there, I have an XML layout containing an image view which loads the first image ( of a series of 8 images). Also in the layout are two arrows - one for previous and one for next, using these buttons the image in the view changes using setImageResource and pass IDs as R.id.image1, R.id.image2 an

[android-developers] Is it possible for a WebView select element to show a Spinner title?

2011-09-09 Thread Joe Hudson
Hello, I would like to know if I can show a title like that from the Spinner using HTML with a select element. I've tried the obvious (title attribute) with no luck. I'd appreciate the help. Thanks. The title I'm referring to can be seen in the following image: http://www.google.com/imgres?

[android-developers] MonkeyRunner over TCP

2011-09-09 Thread Erick
I tried to use MonkeyRunner to access a device over TCP and ran into an "unknown host service" problem. Further digging revealed a May16 thread on this group from the MonkeyRunner author stating that this had not been tried and was unsure if it was possible. Has the capability to implement Monkey

[android-developers] is there any way to clip select element option text in a WebView

2011-09-09 Thread Joe Hudson
Hello, I have a WebView displaying html. A dropdown box (select element) shows option value text fine but if the text is too long, it will render past the divider line and over to the right where the down arrow is. Is there any CSS attribute that would allow me to clip the text at the divider

[android-developers] custom launcher limitations?

2011-09-09 Thread dazed3confused
Hi I just wanted to ask the group, I have been working on a custom launcher which has been going rather well. I was wondering however, if from the launcher app would it be possible to stop other apps on the phone from loading data into their own web browsers (webview nested within their app by the

[android-developers] Scrolling erratic in Emulator in OS X Lion

2011-09-09 Thread Mehuge
I have installed the android SDK on a mac running OS X Lion using eclipse as the IDE. When I run apps in the emulator, scrolling is completely broken. If I scroll a list all the way to the top, android then scrolls it all the way back down again. If I scroll slowly, the scrolling is jumping up a

[android-developers] MonkeyRunner image compare

2011-09-09 Thread Case B
Hello, I'm having an issue with using MonkeyRunner. The goal of my script is to be able to compare saved screenshots with current screenshots in an app. I am still deciding whether to go with python or java, they're both having issues. With Python, the MonkeyImage.sameAs(MonkeyImage, percent) i

[android-developers] onTouchEvent method is not working

2011-09-09 Thread Anoop Singh
I am working on a drawing application. When I touch on screen primitive is drawing properly but when I am dragging on emulator screen only few times onTouch event is called. // mPaint is a Paint object. @Override public boolean onTouchEvent(MotionEvent event) { fl

[android-developers] Android: AdActivity Window Flags

2011-09-09 Thread jdrop
Hello, I am using the Android SDK. My activity which should display the ads has the window flag "WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED" and is running above the lock screen. I do not want to go into detail why exactly that is necessary, but I have good reasons for this. In order to le

[android-developers] Re: java Thread class vs Android HanderThread: which is better?

2011-09-09 Thread Doug
On Sep 7, 8:52 pm, Pratik Prajapati wrote: > Android documentation says that "consider > usingAsyncTask >  or > HandlerThread, > instead of the traditional > Thr

[android-developers] Re: FFMPEG Question

2011-09-09 Thread Doug
On Sep 7, 10:08 am, dani maoz wrote: > Can i  ffmpeg on Android Emulator? Yes, and you can use Google to find out more information. Doug -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-develop

[android-developers] Bluetooth sync fails.

2011-09-09 Thread Ankur Avlani
Hi, I am trying to develop an application on bluetooth. I am successfully able to pair and send,receive data. Everything works fine. I have a service running in the background, which keep on checking for any incoming connections. Now if i leave the device as is for an hour or more. Android au

[android-developers] adjustPan notifications

2011-09-09 Thread guich
Hi, Is there any kind of notification that's sent when using adjustPan in the windowSoftInputMode attribute? I want to know how much the screen was panned. TIA guich -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this gr

Re: [android-developers] Re: How reliable is Google Marketplace Device Compatibility Report?

2011-09-09 Thread Mark Murphy
On Fri, Sep 9, 2011 at 12:32 PM, MarkG123 wrote: > OK, so how would I achieve this as a single APK? That would depend on what "this" is. > Should I check the > OS version API 11+ for tablets, < 11 for smartphones? As Ms. Hackborn pointed out, this is invalid. You first need to decide what you

Re: [android-developers] Re: How reliable is Google Marketplace Device Compatibility Report?

2011-09-09 Thread Dianne Hackborn
Neither. OS version does NOT have anything to do with tablets. (This is depressing, working on ICS there are *way* too many apps that are actually checking API level >= 11 to indicate it is running on a tablet. :/). Screen density also has nothing to do with screen size. I suggest first reading

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

2011-09-09 Thread TreKing
On Fri, Sep 9, 2011 at 11:24 AM, sblantipodi wrote: > how? Try reading the documentation and using the clearly named function. - TreKing - Chicago

[android-developers] Re: How reliable is Google Marketplace Device Compatibility Report?

2011-09-09 Thread MarkG123
OK, so how would I achieve this as a single APK? Should I check the OS version API 11+ for tablets, < 11 for smartphones? How does this work when the next combined OS comes out? Should I check screen density on the fly and open the correct activity? Will I have problems using honeycomb controls

  1   2   >