[android-developers] detect whether the network is connect

2009-11-18 Thread tstanly
hi all, how can I check whether the network is connect or not in my application? eg: I have three connect type, wifi, 3G and ethernet, I want to detect whether the connection is setup or not by the application, if not, it will pop up a dialog to mention user that there are not connect yet. but

[android-developers] How to Load PDF to Browser?

2009-11-18 Thread Moon Technolabs
Is there any inbuilt function to load PDF or DOC file.. Tried using Webview but content was not displayed... -- 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

[android-developers] Touch screen inactive

2009-11-18 Thread Pierre Henry Perret
In stacking tasks, at some point the touch screen dont work any more. It works again later without reason. Is this a known problem ? -- 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] Re: How to test if app is shown on Market for all screensizes

2009-11-18 Thread Klaus Kartou
We haven't turned copy protection on for our app, and it is still not visible on HTC Tattoo/HTC Dragon. Please, Google is this a known issue? On Tue, Nov 17, 2009 at 11:02 AM, Aspidoff aspid...@gmail.com wrote: I noticed this problem when the new Droid Eris came out. At first, i started

Re: [android-developers] Re: java.lang.IllegalStateException: Content of adapter changed but ListView didn't

2009-11-18 Thread Romain Guy
I don't seem to be manipulating it at all in the background thread; only the array list it is connected to. That's your problem right here. You cannot change the adapter's data from outside the UI thread. On Tue, Nov 17, 2009 at 7:38 PM, WoodManEXP woodman...@gmail.com wrote: I have run into

[android-developers] Re: PhoneStateListener::onSignalStrengthChanged

2009-11-18 Thread Master_Ne0
Not quite, the original way passed an int not a SignalStrength class, i dont think SignalStrength is part of the SDK yet. They say its been deprecated, i assume this means a soon to come revision of the SDK will have this class in and fixed. You will have to wait for a google developer to confirm

[android-developers] adding new API : make error :41

2009-11-18 Thread Sagar Gajjar
Hi all, I want to add my own API's to android. For this thing I followed one document I got from net and according to I added one directory called abc to android framework which contains three sub directories java, jni and libabc. When I tried to build the source code with this added

[android-developers] Re: How to test if app is shown on Market for all screensizes

2009-11-18 Thread blindfold
Same thing with me, I have copy protection turned off in Android Market. It would be good now to get some feedback from Google or HTC on whether it is a bug. On Nov 18, 9:54 am, Klaus Kartou kar...@gmail.com wrote: We haven't turned copy protection on for our app, and it is still not visible

[android-developers] Re: Autohide Scrollbar in ListView

2009-11-18 Thread NoraBora
Thank you for reply. Would you tell me which part in 2.0 supports this feature? I should check that part. On Nov 17, 1:49 pm, Dianne Hackborn hack...@android.com wrote: This is not a standard part of the Android UI, though support for this kind of behavior was introduced in 2.0 (but not used

[android-developers] Re: Problem in setMargins() and textview

2009-11-18 Thread Nithin
any idea On Nov 18, 12:23 pm, Nithin nithin.war...@gmail.com wrote: Padding can't do. I want to implement margin, itself. On Nov 18, 12:09 pm, GPU gopuraj...@gmail.com wrote: use the padding On Nov 18, 10:20 am, Nithin nithin.war...@gmail.com wrote: Hi, I tried in this way

[android-developers] Re: Problem in setMargins() and textview

2009-11-18 Thread Nithin
Hi, now, I am trying in this, still its not working... LinearLayout layout = new LinearLayout(this); LayoutParams layoutParams = new LayoutParams( LinearLayout.LayoutParams.FILL_PARENT, LinearLayout.LayoutParams.FILL_PARENT);

[android-developers] android.net.Proxy delivers wrong info

2009-11-18 Thread Rainer
Hi I have the following setup. I have a 1.6 phone with an apn that requires a proxy, in addition I have a wifi connection that does not require a proxy (or maybe it requires a different one). My app uses android.net.Proxy.getHost(context) in order to find out the current proxy settings but even

[android-developers] Re: WebView.loadUrl on a hidden view opens the android browser

2009-11-18 Thread Rainer
that fixed the problem, thanks (sorry for the late reply) On Sep 21, 2:21 pm, Mark Murphy mmur...@commonsware.com wrote: I am trying to transition between 2 web views. One is in the foreground and the other already prepares another URL in the background. Everything works fine except for the

[android-developers] Pls help required ! : setPreviewCallBack - Bitmap

2009-11-18 Thread arnouf
hi all, How can I convert the camera preview to a bitmap without use Takepicture ? The goal is to analyze the colors present inside the current preview. When I try to create bitmap (50x50 pixels of the current view) the result view is green with black lines. Apparently the preview uses the YUV

[android-developers] Re: android.net.Proxy delivers wrong info

2009-11-18 Thread Rainer
Ok, I guess I found the answer myself in RequestQueue from the android sources /** * Because our IntentReceiver can run within a different thread, * synchronize setting the proxy */ private synchronized void setProxyConfig() { NetworkInfo info =

[android-developers] Custom Android SubMenu

2009-11-18 Thread Lorys Pognon
Hi I would like to you how can I customize the defaut android subMenu list. My objective is if for each item of the submenu to have (Text, 2 imageViews ). Do I need to write and ListAdapter?? Thanks LP -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: How to Add Objects to Sqlite Database

2009-11-18 Thread Lior
There are a few ways to do this, but I'll explain the recommended way: First of all, a database is not object oriented, so you should forget about the concept of storing 'Mydata' in a single column, and in your case (as in most cases) even in a single table. For your case, you will need two

[android-developers] Accelerometer to earth coordinates

2009-11-18 Thread Jorge
Hi! I've been trying to map the accelerometer values to earth coordinates using the rotation matrix. I would expected to have in the Z axis the Gravity value always, but the remapped coordinates when I move the phone shows the Gravity value in the X and in the Y coordinate also. Does anyone

[android-developers] USB host functionality in Android

2009-11-18 Thread Roy
Hi, I am studying on USB host functionality for Android. 1. Is the android framework support the same? 2. Is kernel label USB driver available to do the same for arm? What config needs to be enabled to do the same? Please send me the response . This is very urgent to me. Regards, Roy -- You

[android-developers] Wrong items getting selected in multiselect list

2009-11-18 Thread sathya
Hi, I am using a list view in which each list item displays two lines of text with a check option. I am using the following code to check the check box(usins my own image for check mark) Code to handle the item select: protected void onListItemClick(ListView l, View v, int position,

[android-developers] Re: seekbar / progressbar

2009-11-18 Thread Narp Developments
I'm having the same error, and ever everything is equal to your example On Nov 16, 7:53 pm, Mario marioxxx...@gmail.com wrote: i want to change the color of progressbar  as the cursor is moved, but setProgressDrawable() seems to work only within OnCreate() method, if i change the

[android-developers] Need help developing an app

2009-11-18 Thread jc
I'm looking to have an app developed for my business. How would I go about doing 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-developers@googlegroups.com To unsubscribe from this group,

[android-developers] Uri withAppendedPath not finding contacts

2009-11-18 Thread Sime
I'm trying to lockup what contact belongs to a specific number. I'm sending sms from one emulator instance to another (ie. 5554 to 5556 for example) and have entered contacts with those numbers. But when running the code below my cursor doesn't return anything. The filtering seems like it's not

[android-developers] Re: How to build a project in Android sources seperately?

2009-11-18 Thread 3pei
thank you for your reply. but i still can't make it works. it shows me: make: Entering directory `/where/is/the/tree' make: *** No rule to make target `out/host/linux-x86/bin/acp', needed by `out/host/linux-x86/bin/minigzip'. Stop. and there are no 'libz.a' or 'libz.so' in out directory (but

[android-developers] Ruby for Android

2009-11-18 Thread TCBlues
Is there any way to develop applications on Ruby for Android? thank you -- 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] Enabled and Disable APN

2009-11-18 Thread mist3r0
Hello boys, I'm a junior programmer of android. In my application I need to enable and disable apn when I click one button, but I don't know the way to resolve it. Can you help me? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] Re: Failed to fetch URL https://dl-ssl.google.com/android/repository/repository.xml

2009-11-18 Thread MYNAMESALEX
$ export GDK_NATIVE_WINDOWS=true running that before opening the sdk worked perfect for me. I am on ubuntu 9.10 and I was noticing the buttons in the sdk acted as if they didnt respond to anything. I could then enable the force https http thing, and updating works fine. On Nov 1, 5:46 am, Jay

[android-developers] WAP browser for Android

2009-11-18 Thread commandus
Hi, I need your opinion- is WAP browser need to be implemented in Java for Android? I just starting wt100 project to develop simple WAP (WML) browser and now I would like make decision- continue work or not. You can see screenshot here:

[android-developers] Re: cannot set proxy when download sdk

2009-11-18 Thread Ajay
How about adding your solution / setting to the email thread. I am in the same situation, and can't setup android! (What a great f***ing way to start developers on android) On Nov 3, 9:34 pm, Michael Liao askxuef...@gmail.com wrote: i found the setting. On Wed, Nov 4, 2009 at 10:21 AM,

[android-developers] Re: Rotate TextView 90 degrees text out of view.

2009-11-18 Thread benbenbenben
I just changed the textsize to 14 and now it works great! Also with size 10, only not with size 12. Bug? -- 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

[android-developers] SDK installation

2009-11-18 Thread MCL200HR
I too was having trouble installing the SDK packages withen Eclipse SDC and AVG manager. Messages like failed to rename directory or file is locked, then the installer quit and tried the next package. I went to control panel, administration tools (services) and stopped the Norton Internet

Re: [android-developers] The audacity !

2009-11-18 Thread Michael Rueger
Disconnect wrote: Report them to paypal :) Or start downloading. *a lot* ;-) -- 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

[android-developers] Re: Working with the new ContactContracts API

2009-11-18 Thread EMMNS
Hi all, thanks for your posts, that got me started and going on the new sdk 2.0, but still facing some problems adding contacts. let's say i have an array of String has the contacts info String[] c = new String[] {First name,Last name,mobile number, home number, work number, fax number, email

[android-developers] Re: SoundPool problem

2009-11-18 Thread Doug
YES YES YES. This is particularly disappointing to me (that mp3 doesn't work with SoundPool on 2.0). I have an entry in ADC2 that relies heavily on mp3/SoundPool that works fine with all phones EXCEPT the recently produced Droid which runs 2.0. I'm sure it will kill my application's chances in

[android-developers] Suspending and resuming threads in Android

2009-11-18 Thread Eldad
Hello, We are developing an application that needs to suspend and resume threads like a debugger (meaning in a non-safe way like Object.wait() and Object.notify()). In the Java SDK the methods Thread.suspend() and Thread.resume() are deprecated but we can still use them. Also there is the Java

[android-developers] Garbage Collector

2009-11-18 Thread Joel Gonçalves
Hi developers, I'm developing an application and for the performance tests I would like to turn of the GC. Is it possible?? I made some research and I found the System.gc() call to give a hint to the GC. The problem is that it do not command the GC only gives a hint. Is this method synchronous or

[android-developers] Application not responding after resuming with an unlock

2009-11-18 Thread Sreekumar
My application shows ANR dialogue when it resumes from an unlock . this happens only when I keep the application idle for some time till the phone gets locked by itself. ANR is shown when the phone is unlocked by pressing menu button. The issue is not reproducible in all cases ,it occurs with a

[android-developers] How to increase the resolution

2009-11-18 Thread shri
how to increase the resoltion in android... what all changes need to do in the source code to get 1280X720p resolution... -- 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] CameraSurfaceView and how surfaceCreated() gets called

2009-11-18 Thread android-newbie
I have some questions regarding code below for camera preview applicaiton. Can someone please help me out? 1. How does surfaceCreated get called? From SDK, it is called immediately after the surface is first created, but I still don't know who creates this surface? 2. Why do we need to set

[android-developers] Re: How to Add Objects to Sqlite Database

2009-11-18 Thread 097
See details in the docs under SDK_DIR/docs/guide/topics/data/data- storage.html and I think you'll find the answer You should implement SQLiteDatabase.CursorFactory interface, and create an SQLiteDatabase instance by calling the static method SQLiteDatabase.openOrCreateDatabase. Details info of

[android-developers] Eclipse question

2009-11-18 Thread Tom B
I have never developed an app and have very little knowledge of Java. I recently downloaded the tools necessary to create an application for Android 1.5. I used Eclipse to attempt to make a simple app and inserted @string/hello into the onClick property and then the property disappeared and I've

[android-developers] Re: Webservice on Android

2009-11-18 Thread Luis-Jaime
Found the solution. It was the proxy. The link below shows how to do this, but as a reference I'm also including the code I used from that link. http://www.mail-archive.com/android-developers@googlegroups.com/msg65644.html public void onCreate(Bundle savedInstanceState) { try {

[android-developers] Re: Can recognizer use a file for audio input?

2009-11-18 Thread Steve
I have been planning a test of that very action. I doubt the recognition quality will be very good but I will post my results. Certainly, performing the recognition on a prerecorded file would be better but it doesn't appear possible within the confines of the SDK. Hopefully I am just missing

[android-developers] Re: abortAnimation on ListView

2009-11-18 Thread Philipp
I had a similar problem in touch mode. In my case, individual OnClickListeners for each single convertView caused the problem. They were created by a custom adapter. E.g. I had code like this: public class MyAdapter extends ArrayAdapterMyData { ... public View getView(int position, View

[android-developers] android1.6 source code

2009-11-18 Thread shri
can anyone please do share the android1.6(donut) kernel source code -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] Set size of Rating Bar with code

2009-11-18 Thread Dennis Miller
Hi all, I understand that the size of the Rating Bar can be set in xml using the style attribute (style=?android:attr/ratingBarStyleSmall) however, I need to set this style with code. The RatingBar class does not seem to have a setStyle() method to set this. Can anyone help? Thanks, Dennis --

[android-developers] Re: Error to create an AVD - Ignoring add-on

2009-11-18 Thread zak
The problem is you do not have any target. Goto sdk folder and run SDK manager and install targets. It will be installed in sdk/platforms/ folder. Once you done that, come back and create an AVD. On Nov 16, 11:40 pm, hotspring sunkeun...@gmail.com wrote: I had the same error message for an avd

[android-developers] Developing Android Developers in the US

2009-11-18 Thread GirlRumi
Hello All, I am attempting to reach out to Android Developers who might be able to answer a fundamental question... what is the best way to identify Android developers in the US? My company is thinking of training developers who have experience in Java or Linux onsite at our facility in

[android-developers] Droid fonts: Georgian alphabet Mkhedruli

2009-11-18 Thread Sebastian Scherer
Hallo everyone, are there any plans about including the Georgian alphabet in the near future? There is a plethora of websites in Georgian and thanks to Unicode they are displayed correctly out of the box on almost every computer system nowadays. Thus I was surprised to learn that the

[android-developers] I would like to get opinions on the app I need to write. Is my approach correct?

2009-11-18 Thread HBBob
I’m a new android developer. I would like to get opinions on the app I need to write. Is my approach correct? Is there an established standard of doing this type of thing, etc. Is there anything I need to watch out for? Thanks in advance Simple pickup and delivery system: Program starts Query

[android-developers] repo sync 100% and throw a GitError

2009-11-18 Thread 3pei
i meet a problem like this: while sync with repo using repo sync command 100% download has gone with out any problem after that it gives the below error File /home/local/CORPUSERS/40001123/mydroid/.repo/repo/subcmds/ sync.py, line 238, in Execute project.Sync_LocalHalf(syncbuf) File

[android-developers] Re: ring app crash when using telephony manager to listen for calls

2009-11-18 Thread Serg Podtynnyi
Interesting that we saw same logs on cyanogen mod issue: http://code.google.com/p/cyanogenmod/issues/detail?id=647#c92 On Oct 27, 2:34 pm, siliconeagle rrmu...@gmail.com wrote: I have a media player which i want to mute when the user gets a call. I was using the TelephonyManager to listen for

[android-developers] ssl.SSLException Not trusted server certificate httpclient

2009-11-18 Thread androidguy
Hi All, I am new to android. I have been trying to use httpclient to post data on https (secure). I have searched all forums of android but I could not find any solution that works with httpclient on https. I have seen some solutions using HttpsURLConnection. and SSLContext. I would like to go

[android-developers] building to support both contacts 1.6 and 2.0 apis

2009-11-18 Thread androsag
As has been discussed on this list, the 2.0 Contacts API is a significant overhaul. And that the 1.6 API has been deprecated. Usually this means use of the 1.6 API is discouraged but maintained for at least a little while. I am not that this is the case, however. The app I'm working on was built

[android-developers] Tricorder app code download

2009-11-18 Thread Tan
hi all where/how can i download the code for tricorder app? code.google.com/p/ tricorder is forbidden from wifi as well as 3g connection. thanks tan -- 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] Enable and Disable APN

2009-11-18 Thread mist3r0
Hello Boy, I'm a junior programmer of android. In my application I need to enable and disable APN when I click a button, but I don't have idea hw to do. Someone can help me? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Unable to debug Hello World Example

2009-11-18 Thread Simon
Hello, I tried to install and run the Hello World example (http:// developer.android.com/guide/tutorials/hello-world.html), and for the most part all is good. Unfortunately when I attempted the run the debugger per http://developer.android.com/guide/tutorials/hello-world.html#debugging I got the

[android-developers] Using MacOS X, Eclipse for Android development

2009-11-18 Thread kchoi
I created a step by step instruction for people who are interested to program Android in MacOS X with Eclipse in 64 bits configuration. http://androiddevblog.blogspot.com/2009_11_01_archive.html -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Re: Tut (SDK 1.5) Get google account of user

2009-11-18 Thread Mark Lowne
Very interesting discussion! Thanks everybody for the precious info. Did anyone manage to get BlockingHelper to work? (or, to put it differently: is there any way to do this without the need for an activity that receives the result?) On Oct 12, 7:27 pm, kostmo kos...@gmail.com wrote: It seems I

[android-developers] [Quit application correctly] How to execute code before exiting application ?

2009-11-18 Thread Syl
I would like to know how to execute code before exiting application. My application is composed of several activities. When the user starts the application (from the launcher menu or from a notification in the status bar), he goes in an InitActivity where I process some initializations. From user

[android-developers] How to Add new sensor support in Android sensor framework?

2009-11-18 Thread Leo
Hi Guys, Can some one please point me towards any documentation/resources/ threads that can explain how a new sensor support can be added in android sensor framework? I'll be grateful for your help in this regard. Kind Regards Leo -- You received this message because you are subscribed to the

[android-developers] Re: App Not showing up on Verizon DROID Phones

2009-11-18 Thread Mr.Pibb
Well...I wanted to download your app and my HTC Eris doesn't see it when I search for it or follow the direct link from your page. Android folks: any solution to this? This seems to be as much of an Android problem as it is a problem with the specific phones/devices. On Nov 13, 5:20 am, Armond

[android-developers] unsubscribe

2009-11-18 Thread Kiran Raju Chowkewar
Thanks and Regards Kiran R Chowkewar Mob:- 9975122322 -- 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] Re: [Android 2.0] Contacts FAQ?

2009-11-18 Thread GDroid
I would like to add one more question to this issue: 15) What is the best way to write the code so in case the API Level is below 5, some of the contacts actions can still be done correctly. As far as I've checked when publishing an application on the market there is no way to publish two apks,

[android-developers] How to get my name account ie: sa...@gmail.com

2009-11-18 Thread kike
Its simple, how can i obtain by code the user google id?? -- 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] Help Required: Invoke Email Client from another android application

2009-11-18 Thread Sandeep Ranganath
Hi, Have a application from which i need to invoke the email client provided as the base apps with android 1.5 -Sandeep -- 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] XMPP Services

2009-11-18 Thread KamanL
I went through the Android introduction videos and in them an engineer from Google spoke of an open XMPP/gtalk service provided by Android, that developers could use to push messages out from a server to Android devices. I googled the forums and dug through the SDK samples, but could not find any

[android-developers] Re: DalvikVM could not find field after ProGuard Obfuscation

2009-11-18 Thread GDroid
I was testing against 1.5. I removed the - overloadaggressively and it worked. Thanks for the help. On Nov 6, 11:52 pm, fadden fad...@android.com wrote: On Nov 4, 8:37 am, GDroid baron...@gmail.com wrote: Currently I've managed to build the correct build.xml file and run ProGuard 4.4.

[android-developers] Stop an SMS from being sent from default SMS client.

2009-11-18 Thread Iffi
Hi All, i have read a few posts about somehow intercepting the outgoing SMS. after some googling i was able to intercept the outgoing SMS by getting the outbox. Now the problem is that when the SMS comes to outbox i try to delete it at the same time, the API shows that the row was deleted from

[android-developers] gdata-api

2009-11-18 Thread sunny
Hi, I am trying to integrate my calendar application with google calendar by making use of the apis provided by google. Android is not supporting those apis. I am able to build the application as a java application but not as an android application. So I request to suggest me a way in doing

[android-developers] Android sms api

2009-11-18 Thread Roger Schildmeijer
I know that the SMS content provider is not part of the public api (atleast not documented), but if I understand correctly its still possible to use much of the sms features as long as you know how to use the api(?). E.g its pretty straight forward to insert an sms in your inbox: ContentValues

[android-developers] Using third party libraries

2009-11-18 Thread sunrises
Hi In my project I am using org.apache.commons library and my application runs well in the emulator, but when I published as a signed application in another emulator or g1 device it does not working especially the apache library classes,but user interface and databases which are related to

[android-developers] Re: Multitouch support in Android 2.0

2009-11-18 Thread 3pei
On Nov 16, 9:30 pm, Dianne Hackborn hack...@android.com wrote: On Sun, Nov 15, 2009 at 7:21 PM, niko20 nikolatesl...@yahoo.com wrote: for example on the G1/Sapphire class screen there are interactions between the two points reported, and if you play with Pointer Location on Droid you will

[android-developers] Re: How to build a project in Android sources seperately?

2009-11-18 Thread 3pei
seems i need build the host tool acp , but it has a dependence of libhost, and libhost has a dependence of acp, tooo. how can i resolve this On Nov 17, 11:40 am, Julian Chu walking...@0xlab.org wrote: checkout the android source tree, build from scratch once you want to build it $cd

Re: [android-developers] Stop an SMS from being sent from default SMS client.

2009-11-18 Thread Mark Murphy
Iffi wrote: Hi All, i have read a few posts about somehow intercepting the outgoing SMS. after some googling i was able to intercept the outgoing SMS by getting the outbox. Now the problem is that when the SMS comes to outbox i try to delete it at the same time, the API shows that the

Re: [android-developers] Ruby for Android

2009-11-18 Thread Mark Murphy
TCBlues wrote: Is there any way to develop applications on Ruby for Android? There has been some preliminary work to get JRuby running on Android. It is a long way from being able to create full applications, though. -- Mark Murphy (a Commons Guy) http://commonsware.com |

Re: [android-developers] Re: abortAnimation on ListView

2009-11-18 Thread Romain Guy
This was an internal issue so there's no link, sorry. On Wed, Nov 18, 2009 at 12:46 AM, Philipp fischer.phil...@gmail.com wrote: I had a similar problem in touch mode. In my case, individual OnClickListeners for each single convertView caused the problem. They were created by a custom adapter.

[android-developers] Re: Ruby for Android

2009-11-18 Thread Esmail
TCBlues wrote: Is there any way to develop applications on Ruby for Android? I was wondering the same for Python, especially given that Python is one of the main languages used by Google. -- You received this message because you are subscribed to the Google Groups Android Developers group.

[android-developers] Re: Map Application works in 1.5 but not working in 2.0

2009-11-18 Thread Esmail
RANJAN BANIK wrote: Hi All, I have a code which works beautifully in the Android 1.5 platform. Now I have upgrade the platform to the Android 2.0 , but it is not working . hi, has this been confirmed? thanks. -- You received this message because you are subscribed to the Google Groups

[android-developers] Re: XMPP Services

2009-11-18 Thread Lance Nanek
It's been removed in the latest versions of the SDK and the issue to put it back declined: http://code.google.com/p/android/issues/detail?id=201 It was really great while it was in. I wrote a multiplayer game using it for the first Android Developer Challenge. A player could choose to challenge a

Re: [android-developers] Re: SoundPool problem

2009-11-18 Thread Wayne Wenthin
I may be wrong but I thought I read that the ADC2 was restricted and will not run on 2.0. On Mon, Nov 16, 2009 at 10:28 PM, Doug d...@hyper-aware.com wrote: YES YES YES. This is particularly disappointing to me (that mp3 doesn't work with SoundPool on 2.0). I have an entry in ADC2 that

[android-developers] Re: Get info from mp3 file

2009-11-18 Thread aBx
Aiite...thnx... On Nov 18, 2:59 am, PJ pjbar...@gmail.com wrote: Environment.getExternalStorageDirectory() will give you a Java File object to the directory of your sdcard:http://developer.android.com/reference/android/os/Environment.html Once you can access your mp3 file, extracting mp3

[android-developers] Re: Draw Bitmap on Overlay

2009-11-18 Thread Søren
I think I'm getting there, but it seems like my projection isn't working. This is my onCreate-method in my MapActivity: public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.map); _mapView =

[android-developers] How Handle Android Default Messaging Application According To Our Requirement

2009-11-18 Thread Gulfam
Hi Everyone, Currently I am doing RD on an idea for example I have an application abc which send sms through my own way . I want to do work like this: When user send sms from Android Default Messaging Application My app Intercept that sms and stop it to send and take user decision to send sms

[android-developers] Re: Problem running Android jUnit tests on Android project with multiple included auxiliary projects

2009-11-18 Thread Diego Torres Milano
You should create jars for your libraries and include them in project's Properties - Java Build Path - Libraries. Hope this helps. -- Have you read my blog ? http://dtmilano.blogspot.com android junit tests ui linux cult thin clients On Nov 18, 6:30 am, emitya dkolega...@gmail.com wrote: Hi,

[android-developers] Re: Migrating Google Accounts from 1.x to 2.0

2009-11-18 Thread ubikdroid
My apps use GoogleLoginServiceHelper and as far as I know they work on the Motorola Droid. One user reported an unrelated bug with the Droid to me but did not mention any other issues. On Nov 9, 2:25 am, JP joachim.pfeif...@gmail.com wrote: Introduced in 2.0, the SDK offers AccountManager to

[android-developers] Is status bar an activity?

2009-11-18 Thread pink 444
Hi all, Notifications are displayed in status bar.Any thing , which appears to user in android is an activity. Thus can i assume status bar as an activity . Because user can see it. In that case there are always two activities in running mode ,one is home or any user

Re: [android-developers] Is status bar an activity?

2009-11-18 Thread Mark Murphy
pink 444 wrote: Notifications are displayed in status bar. Yes. Any thing , which appears to user in android is an activity. Not everything that the user sees is an activity. The status bar and its contents are not an activity. Toasts are not activities. App widgets are not themselves

[android-developers] Re: Eclipse question

2009-11-18 Thread kchoi
I created a Blog for using Eclipse for Android programming, though it's on MacOS X platform but it shall be the same for Windows. I will have successive posting working through small projects as part of my own learning experience. It might be helpful if you just getting started.

[android-developers] Re: Draw Bitmap on Overlay

2009-11-18 Thread Nithin
Hi, u try like this.. Point p = new Point(); _mapView.getProjection().toPixels(_gp, p); Then, in canvas.drawBitmap(), try like this... canvas.drawBitmap(bmp, p.x, p.y, null); Thanks Nithin On Nov 18, 6:50 pm, Søren sorni...@fooz.dk wrote: I think I'm getting there, but it seems like my

[android-developers] Sub Acivity fly-in direction?

2009-11-18 Thread CyberQat
Hi Guys, Little question Ive been having difficulty finding an answer to. My current app flies ina sub activity when you flick-up. problem is, it flies in horizontally from the right. I want it to fly in vertically from the bottom to match the flick direction. I'm sure this must be an xml

[android-developers] Re: android1.6 source code

2009-11-18 Thread Lance Nanek
http://android.git.kernel.org/ On Nov 17, 11:26 pm, shri shrireddy...@gmail.com wrote: can anyone please do share the android1.6(donut) kernel source code -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Android on Beagleboard

2009-11-18 Thread develop
I am looking to develop Android on a beagleboard to provide a TTS solution for a disability app. Having tried the Embinux offering it turns out to be a phone based app expecting a touch screen. I have seen the Android TTS demo and would like to see how it would perform on a BB. Any suggestions and

[android-developers] image to text

2009-11-18 Thread Carol Bolger
Hi, I would like to convert an image to text. ie take a picture of a receipt. Could someone point me in the direction of a tutorial or sample code. Thanks Carol -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] /data/misc/wifi/wpa_supplicant.conf access from application

2009-11-18 Thread Francesco
Hello, I'm trying to build a little application in order to help my company's user to connected to the internal wifi network. I know about the android application sandbox and I was wondering if is possible to read/write (by using some permissions) on the/data/misc/ wifi/wpa_supplicant.conf file.

Re: [android-developers] Sub Acivity fly-in direction?

2009-11-18 Thread Mark Murphy
CyberQat wrote: Little question Ive been having difficulty finding an answer to. My current app flies ina sub activity when you flick-up. problem is, it flies in horizontally from the right. I want it to fly in vertically from the bottom to match the flick direction. I'm sure this must

[android-developers] Re: Growing pains for Android developers??

2009-11-18 Thread Kieran
Thanks for your comment Dianne. On Nov 17, 3:59 am, Dianne Hackborn hack...@android.com wrote: Sorry no I don't. On Mon, Nov 16, 2009 at 7:37 AM, Robert Woodruff woodman...@gmail.comwrote: Dianne, Nice to have response from someone inside Google. Do you know when is 2.0 image

Re: [android-developers] image to text

2009-11-18 Thread Mark Murphy
Carol Bolger wrote: Hi, I would like to convert an image to text. ie take a picture of a receipt. Could someone point me in the direction of a tutorial or sample code. You will need to purchase an OCR library, or find something that is free and runs in reasonable speed on Android. -- Mark

[android-developers] Re: Draw Bitmap on Overlay

2009-11-18 Thread Søren
But the toPixels is still wrong. What I'm doing is, I'm drawing lots of circles on a canvas, then I take the bitmap and recolours the circles as one blob. I then want to draw that bitmap to my overlay canvas. I can easily draw, but when I transform my GeoPoint to screenPoints I get the values

[android-developers] Re: Map Application works in 1.5 but not working in 2.0

2009-11-18 Thread Lance Nanek
Is the Maps application on the device you are trying to run this on? On Nov 16, 6:48 am, RANJAN BANIK ranjanfeelthema...@gmail.com wrote: Hi All, I have a code which works beautifully in the Android 1.5 platform. Now I have upgrade the platform to the Android 2.0 , but it is not working .

  1   2   3   >