[android-developers] Re: How to debug Java apps without any IDE?

2009-08-09 Thread Jack Ha
You won't be able to run the Calendar app since the Google Service is missing. -- Jack Ha Open Source Development Center ・T・ ・ ・Mobile・ stick together The views, opinions and statements in this email are those of the author solely in their individual capacity, and do not necessarily represent

[android-developers] Re: Related to Home Key

2009-08-09 Thread Jack Ha
Without seeing your code, it is difficult to point out where the problem would be. -- Jack Ha Open Source Development Center ・T・ ・ ・Mobile・ stick together The views, opinions and statements in this email are those of the author solely in their individual capacity, and do not necessarily

[android-developers] Re: Read CID of SD card (MMC)

2009-08-09 Thread Pete
Hi Dan Thanks for your help. How can I read the CID of the external sd card that is mounted to /sdcard/sd? -Pete On 9 Aug., 05:19, dan raaka danra...@gmail.com wrote: In galaxy, There is an internal memory which is 7GB mounted as /sdcard and the external sd card gets mounted as /sdcard/sd

[android-developers] I want more text in Preference summary

2009-08-09 Thread an0
It seems Preference summary text has a limit of about 2 lines, but I want more. How can I do that? 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] Re: read csv file

2009-08-09 Thread Jack Ha
Try something like this: InputStream is = this.getResources().openRawResource (R.raw.csv_file); BufferedReader reader = new BufferedReader(new InputStreamReader (is)); try { String line; while ((line = reader.readLine()) != null) { // do something with

[android-developers] Re: Service context can not serve Dialog?

2009-08-09 Thread an0
I found using any foreground Activity as the context of Dialog works, but not the Application context returned by getApplicationContext (). What is Application context? What's that for? The doc says nothing useful about it. On Aug 5, 9:47 pm, Mark Murphy mmur...@commonsware.com wrote: an0

[android-developers] Re: Inserting Images in Text Field along with the Text

2009-08-09 Thread Jack Ha
Not sure what you mean here by adding an image to a text field. Can you elaborate on that? -- Jack Ha Open Source Development Center ・T・ ・ ・Mobile・ stick together The views, opinions and statements in this email are those of the author solely in their individual capacity, and do not necessarily

[android-developers] Re: PopupWindow animation

2009-08-09 Thread skink
On Aug 8, 4:46 pm, loctarar andrei.bu...@gmail.com wrote: Solved :). If anyone is interested the styles.xml should look like this: resources         style name=Animation.Popup parent=android:Animation         item name=android:windowEnterAnimation@anim/popup_in/ item         item

[android-developers] is it possible to get data from contacts and wirte back?

2009-08-09 Thread luo ian
Hi guys; now I'm planing to write a app to access the system contacts, maybe get contact information is easy to implement, but can I create a new recored of contact in my app and insert into the system's contact? my requirement is : 1. get all records from contact 2. insert my recored into

[android-developers] Re: How to get android to show my IME in the input method pop-up menu?

2009-08-09 Thread Tejas
Add your module's LOCAL_MODULE value to the product make file's PRODUCT_PACKAGES variable. Look at the product (for eg: generic.mk) and LatinIME's Android.mk file, for details.. On Aug 5, 10:46 am, Harsha harsha.ravni...@gmail.com wrote: Hi, I have written my input method on lines of

[android-developers] BitmapFactory Image from ZipFile

2009-08-09 Thread Orion2569
Ok, basically what i'm attempting to do is place several images into 1 zip file, and then read the images back out of the zip file, and draw them onto a canvas using BitmapFactory. This is what my code looks like, but when i debug i only get a source not found error. Code: try {

[android-developers] Multitouch API for the Hero ??

2009-08-09 Thread Hekki
Hi all, The htc hero has multitouch capabilities in the browser and in the picture gallery, but i cannot find any ressources on how to use it in my own application. Can someone point me in the right direction ? Thanks. --~--~-~--~~~---~--~~ You received this

[android-developers] Trouble with signing apk

2009-08-09 Thread Tobias Eisentraeger
Hello group, I created a little app and uploded it to the Market, it is online, its the Locale Http Request Plug-in. I signed it with Eclipse using the build in creation of the key file, gave it 35 years lifetime. But when I install it with the Market on my phone, it downloads it and then gives

[android-developers] Re: Streaming encoded video via RTP

2009-08-09 Thread dachuan lin
I think we can receive rtp data from PC server and fake the data to rtsp stream and broadcast it from android service, then we can receive it in mediaPlayer. 2009/8/7 Robin Marx marx.ro...@gmail.com First of all, we have no idea whatsoever on how to access the opencore functionality from our

[android-developers] Re: Multitouch API for the Hero ??

2009-08-09 Thread Jack Ha
The current version of the SDK doesn't support multi-touch. -- Jack Ha Open Source Development Center ・T・ ・ ・Mobile・ stick together The views, opinions and statements in this email are those of the author solely in their individual capacity, and do not necessarily represent those of T-Mobile

[android-developers] Re: Trouble with signing apk

2009-08-09 Thread Jack Ha
Did you compile your application in release mode and then sign the .apk with your private key? http://developer.android.com/guide/publishing/app-signing.html#releasemode -- Jack Ha Open Source Development Center ・T・ ・ ・Mobile・ stick together The views, opinions and statements in this email are

[android-developers] Re: Trouble with signing apk

2009-08-09 Thread adam jones
Hello Tobias, Yes you can follow the process as mentioned in http://developer.android.com/guide/publishing/preparing.html You can generate the key manualy or you can generate using eclipse- http://developer.android.com/guide/publishing/app-signing.html#ExportWizard Let me know if you still

[android-developers] Re: BitmapFactory Image from ZipFile

2009-08-09 Thread Jack Ha
Try changing your code to something like the following: Bitmap mBackground = null; try { FileInputStream fis = new FileInputStream(/sdcard/Image/ Images.zip); ZipInputStream zis = new ZipInputStream(fis); ZipEntry ze = null; while

[android-developers] Re: How to send Email with the stock GMail app

2009-08-09 Thread Jack Ha
Typically, you would want to show the proper interface for the user to pick how to send your data: http://www.openintents.org/en/node/121 Or you could write an SMTP client from scratch: http://davanum.wordpress.com/2007/12/22/android-send-email-via-gmail-actually-via-smtp/ -- Jack Ha

[android-developers] About Canvas

2009-08-09 Thread Cold
1) Is it possible to have three canvas in one screen? 2) Can we divide one canvas into different parts... and wht function can i use for this.. .. i need to have three regions in one canvas could anybody tell me which option is possible..

[android-developers] Re: Multitouch API for the Hero ??

2009-08-09 Thread Hekki
Thank you for your answer, that's sad I was develloping a game thar needed it ! Do we know when the next ask is due ? Anyone found a hack around ? Using historicalx or something ? Anyway thank you again. On Aug 9, 10:03 am, Jack Ha jack...@t-mobile.com wrote: The current version of the SDK

[android-developers] Re: Trouble with signing apk

2009-08-09 Thread Tobias Eisentraeger
Ok, the only thing i did not find in eclipse is how i compile in release mode. I think i did the rest correct. How do i compile in release mode? Thanks, --- Toby 9. Aug 2009 10:11 vorm. schrieb am adam jones adjo...@googlemail.com: Hello Tobias, Yes you can follow the process as mentioned in

[android-developers] accurasy in cell id and LAC approach

2009-08-09 Thread Honest
Hello, You all might know that we can get latitude and longitude by passing cell id and LAC to google API but can some one what is the accurasy in it if we use it in real life application. --~--~-~--~~~---~--~~ You received this message because you are

[android-developers] How to find my apps´ location

2009-08-09 Thread Nox
Hi everybody, I´ve developed an app and I want to display my other apps I´ve already published but I don´t know their location. Do you know how to find them??? Thanks in advace Viktor --~--~-~--~~~---~--~~ You received this message because you are subscribed

[android-developers] Slow GPS updates

2009-08-09 Thread CG
Hi, I am developing a small app that works as a speedometer with a build in histogram. But it is quite unresponsive, I test it by driving in my car, and when i go from 80 to 0 it takes about 4-6 seconds before my needle is updated. For simple outlier removal, i use a 1x3 median filter on my

[android-developers] Re: calculate distance using latitude and longitude

2009-08-09 Thread CG
you can use public static void distanceBetween (double startLatitude, double startLongitude, double endLatitude, double endLongitude, float[] results) in the Location class

[android-developers] Keytool-error

2009-08-09 Thread Nox
Hi everybody, I wanted to export an app but there always appears this error-message: Keytool-error: java.io.IOException : Incorrect AVA format But if I try to export another app, there will not be an error!!! Do you know where the error is? Thanks in advance Viktor

[android-developers] Re: Slow GPS updates

2009-08-09 Thread Mark Murphy
*** Here's the real question :) ** I thought i might get updates every second, and thus a delay of 2 seconds, wich wouldn't be to bad. but is GPS really that slow? or am i doing something completely wrong? *** snip I have registrered a listener like so:

[android-developers] Re: is it possible to get data from contacts and wirte back?

2009-08-09 Thread Mark Murphy
Hi guys; now I'm planing to write a app to access the system contacts, maybe get contact information is easy to implement, but can I create a new recored of contact in my app and insert into the system's contact? my requirement is : 1. get all records from contact 2. insert my recored

[android-developers] Re: Keytool-error

2009-08-09 Thread Mark Murphy
I wanted to export an app but there always appears this error-message: Keytool-error: java.io.IOException : Incorrect AVA format But if I try to export another app, there will not be an error!!! Do you know where the error is? Try:

[android-developers] bluetooth use in android

2009-08-09 Thread Honest
I want to use bluetooth APIS in my android application. I could found the API related to wifi but i could not find the API for bluetooth. Can some one tell me how can i use it ? any links for API docs and code snippt will be much useful to me. Thanks to all.

[android-developers] Re: bluetooth use in android

2009-08-09 Thread Mark Murphy
I want to use bluetooth APIS in my android application. I could found the API related to wifi but i could not find the API for bluetooth. Can some one tell me how can i use it ? There is no Bluetooth API in the SDK at this time. -- Mark Murphy (a Commons Guy) http://commonsware.com Android

[android-developers] Re: bluetooth use in android

2009-08-09 Thread Honest
Thanks mark for your reply. So is there no way by which we can use bluetooth API. On Aug 9, 4:43 pm, Mark Murphy mmur...@commonsware.com wrote: I want to use bluetooth APIS in my android application. I could found the API related to wifi but i could not find the API for bluetooth. Can

[android-developers] How do you get all table names exposed by a given Content Provider?

2009-08-09 Thread bw
Hi, The docs for ContentProvider (http://developer.android.com/guide/ topics/providers/content-providers.html) show the url format as: content://com.example.authority/table_name/13 I'm use the following code to find the authority for a particular 3rd- party content provider:

[android-developers] Re: PopupWindow animation

2009-08-09 Thread loctarar
Hello! Yes, it seems I have the same problem. I'll test it on a G1 device tommorow at work and tell you if it works. On Aug 9, 10:46 am, skink psk...@gmail.com wrote: On Aug 8, 4:46 pm, loctarar andrei.bu...@gmail.com wrote: Solved :). If anyone is interested the styles.xml should look like

[android-developers] How do you get all table names exposed by a given Content Provider?

2009-08-09 Thread bw
Hi, The docs for ContentProvider (http://developer.android.com/guide/ topics/providers/content-providers.html) show the url format as: content://com.example.authority/table_name/13 I'm use the following code to find the authority for a particular 3rd- party content provider:

[android-developers] audioRecord buffer overflow

2009-08-09 Thread Tez
Hi, Can anyone send me some pseudo code to record from AudioRecord without getting buffer overflow messages? This is the code i am using : this is my setup for AudioRecord 8khz, 16bit pcm, mono buffer size spec during object creation - 1024 i read 480shorts(960 bytes) every 60ms in

[android-developers] Re: accurasy in cell id and LAC approach

2009-08-09 Thread Maps.Huge.Info (Maps API Guru)
I've seen it as low as 75m and as high as 2400m, I'm sure it fluctuates quite a bit. -John Coryat --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Re: adb finds my G1 device but not others!

2009-08-09 Thread stanchat
Try the kill server command. adb kill-server On Aug 8, 7:25 am, elpix1 elp...@gmail.com wrote: Is the USB debugging setting turned on ? Settings-Applications-Development-USB debugging. On Aug 8, 5:16 am, Paul Drummond paul.drumm...@iode.co.uk wrote: I have never had a problem with

[android-developers] Re: bluetooth use in android

2009-08-09 Thread Stefano Sanna
Hi. On Sun, Aug 9, 2009 at 1:29 PM, Honesthonestsucc...@gmail.com wrote: I want to use bluetooth APIS in my android application. I could found the API related to wifi but i could not find the API for bluetooth. Can some one tell me how can i use it ? any links for API docs and code snippt

[android-developers] Change in String.format between 1.1 and .15?

2009-08-09 Thread amiz
I have an app (SDK 1.1) that uses dataOut_str = String.format(%.2f ,dataOut_d); which converts correctly double (dataOut_d) into a string with 2 decimals. With 1.5, I get a runtime exception: 08-09 17:36:45.717: ERROR/AndroidRuntime(944): Uncaught handler: thread main exiting due to

[android-developers] Re: Change in String.format between 1.1 and .15?

2009-08-09 Thread Jack Ha
It works fine for me in 1.5. What's your dataOut_d value? -- Jack Ha Open Source Development Center ・T・ ・ ・Mobile・ stick together The views, opinions and statements in this email are those of the author solely in their individual capacity, and do not necessarily represent those of T-Mobile USA,

[android-developers] Re: How to find my apps´ locati on

2009-08-09 Thread Jack Ha
Not sure what you mean here by finding the location of your other apps. Can you please elaborate on that? -- Jack Ha Open Source Development Center ・T・ ・ ・Mobile・ stick together The views, opinions and statements in this email are those of the author solely in their individual capacity, and do

[android-developers] Re: About Canvas

2009-08-09 Thread Jack Ha
1. You can have three custom views on one screen and they each have their own Canvas 2. You can divide one canvas into many parts as you like as you have full control of what you want to draw on it -- Jack Ha Open Source Development Center ・T・ ・ ・Mobile・ stick together The views, opinions and

[android-developers] Re: Trouble with signing apk

2009-08-09 Thread Jack Ha
Right-click your project in the Package Explorer and select Android Tools-Export Unsigned Application Package. -- Jack Ha Open Source Development Center ・T・ ・ ・Mobile・ stick together The views, opinions and statements in this email are those of the author solely in their individual capacity,

[android-developers] Re: About Canvas

2009-08-09 Thread Dianne Hackborn
They don't have their own Canvas, for drawing the Canvas you get is created at each drawing pass, and used for all all drawing of that window. On Sun, Aug 9, 2009 at 8:23 AM, Jack Ha jack...@t-mobile.com wrote: 1. You can have three custom views on one screen and they each have their own

[android-developers] Re: PopupWindow animation

2009-08-09 Thread Dianne Hackborn
There is a bug in 1.5 with the system's cache of animations, where it would not clear them when an application is updated. On Sun, Aug 9, 2009 at 12:46 AM, skink psk...@gmail.com wrote: On Aug 8, 4:46 pm, loctarar andrei.bu...@gmail.com wrote: Solved :). If anyone is interested the

[android-developers] Re: I want more text in Preference summary

2009-08-09 Thread Jack Ha
I believe the Preference summary text is limited to 2 lines due to consistency. -- Jack Ha Open Source Development Center ・T・ ・ ・Mobile・ stick together The views, opinions and statements in this email are those of the author solely in their individual capacity, and do not necessarily represent

[android-developers] Re: PopupWindow animation

2009-08-09 Thread skink
Dianne Hackborn wrote: There is a bug in 1.5 with the system's cache of animations, where it would not clear them when an application is updated. -- Dianne Hackborn Android framework engineer thanks Dianne for update! pskink --~--~-~--~~~---~--~~ You

[android-developers] T-Mobile MyTouch Emulator Skin

2009-08-09 Thread droidin.net
I tried to Google for it to no avail. I really need it to make some promos - any hint will be appreciated Thanks, Bo --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

[android-developers] Re: calculate distance using latitude and longitude

2009-08-09 Thread polyclefsoftware
CG's suggestion is best, but you can always calculate it manually with the Haversine formula if you feel like it. Here's a code snippet if you're interested: double dist = 0.0; double deltaLat = Math.toRadians(latVal2 - latVal1); double deltaLon =

[android-developers] Re: bluetooth use in android

2009-08-09 Thread Honest
Hello, Stefano Sanna thanks for your great work. I put one issue in your project please take a look at it and let me know. On Aug 9, 7:49 pm, Stefano Sanna gerda...@gmail.com wrote: Hi. On Sun, Aug 9, 2009 at 1:29 PM, Honesthonestsucc...@gmail.com wrote: I want to use bluetooth APIS in my

[android-developers] Re: calculate distance using latitude and longitude

2009-08-09 Thread Honest
Thanks to both of you for your reply but can some one tell mew which can be better and provide higher accuracy ? On Aug 9, 3:52 pm, CG christian.glee...@gmail.com wrote: you can use public static void  distanceBetween  (double startLatitude, double startLongitude, double endLatitude, double

[android-developers] Re: T-Mobile MyTouch Emulator Skin

2009-08-09 Thread Casper Bang
Not sure if it will suit your need, but I did a generic white HTC Magic skin a few months ago: http://coffeecokeandcode.blogspot.com/2009/06/htc-magic-skin-for-android-emulator.html /Casper On 9 Aug., 18:50, droidin.net bost...@gmail.com wrote: I tried to Google for it to no avail. I really

[android-developers] Re: adb finds my G1 device but not others!

2009-08-09 Thread Paul Drummond
Yeah, the USB is turned on and I have tried restarting the server but nothing. I have found an alternative solution to my problem. I am just trying to install my app on the other phones so I have used the App installer app instead and manually copied signed versions of the app to the CD Card for

[android-developers] Re: T-Mobile MyTouch Emulator Skin

2009-08-09 Thread droidin.net
Thanks Casper, That does look nice - but I really-really need one that says T-Mobile and preferably in maroon or black Bo On Aug 9, 10:34 am, Casper Bang casper.b...@gmail.com wrote: Not sure if it will suit your need, but I did a generic white HTC Magic skin a few months

[android-developers] Re: Service context can not serve Dialog?

2009-08-09 Thread Dianne Hackborn
Since activities are the things that interact with the user, they are the only things that can directly show UI. The Application class exists because my arms were twisted into making it. There is nothing actually all that useful about it, as far as I am concerned. ;) On Sun, Aug 9, 2009 at 12:33

[android-developers] intent filter

2009-08-09 Thread Andrei
Could somebody please humanly explain in few words what these are for in intent-filter ? category action Thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Re: intent filter

2009-08-09 Thread Dianne Hackborn
For specifying which intent actions and categories that the filter matches. For example to match an intent action com.example.DO_SOMETHING, you would specify that as the action in the intent filter. On Sun, Aug 9, 2009 at 11:47 AM, Andrei gml...@gmail.com wrote: Could somebody please humanly

[android-developers] Re: Trouble with signing apk

2009-08-09 Thread Tobias Eisentraeger
Thanks - I got it working now. I manually deleted the old version off the phone, increased the version nr, recompiled, resigned with same key reuploaded it and that was it. --- Toby On Aug 9, 2009 5:30 PM, Jack Ha jack...@t-mobile.com wrote: Right-click your project in the Package Explorer and

[android-developers] Strange Bug in GPS!

2009-08-09 Thread Sharmila
Hi, I have this strange problem with GPS.Inside the emulator,it displays the initial value but it does not update the value.This is what I am doing.I run my application and then go to DDMS,load the KML file and then click play.I am using android sdk:1.5_r3.This is the code I am using: package

[android-developers] can ListActivity and Tab widget can use in one activity?

2009-08-09 Thread tstanly
hi all, my activity have to use List and Tab widget, one is left side,the other is right side, I means layout, but use List must to extends ListActivity, and use Tab widget must to extends TabActivity? is it possible?? thanks!! --~--~-~--~~~---~--~~ You

[android-developers] Re: latitude buddies content provider

2009-08-09 Thread Arno den Hond
I have just installed the latest version of the maps app and i noticed the content provider is now called com.google.googlenav.android.friend.FriendsProvider. Opening a cursor on that uri still provides the same columns. Perhaps this new content provider can give me the locations of latitude

[android-developers] Re: can ListActivity and Tab widget can use in one activity?

2009-08-09 Thread Jack Ha
Not sure what you mean one is on the left side and the other is on the right side. Are you thinking about having the List widget as the content of one of the tabs like the Contacts app? -- Jack Ha Open Source Development Center ・T・ ・ ・Mobile・ stick together The views, opinions and statements in

[android-developers] Re: can ListActivity and Tab widget can use in one activity?

2009-08-09 Thread Dianne Hackborn
You don't need to use ListActivity; just put a ListView in your layout and work with it directly. On Sun, Aug 9, 2009 at 6:38 PM, tstanly tsai.sta...@gmail.com wrote: hi all, my activity have to use List and Tab widget, one is left side,the other is right side, I means layout, but use

[android-developers] GestureListener events

2009-08-09 Thread ayush
i'm using the GestureDetector and GestureListener in a program. i want to have separate actions for the onFling and onScroll events. for a scroll event there is no problem - only the onScroll event is called. however for a fling event BOTH the onFling and onScroll events are being called. i tried

[android-developers] video capture doesn't seem to work

2009-08-09 Thread will
CODE: package com.example.android.camerarec3; import java.io.IOException; import android.app.Activity; import android.os.Bundle; import android.util.Log; import android.view.SurfaceView; import android.view.SurfaceHolder; import android.media.MediaRecorder; import android.content.Context;

[android-developers] SurfaceView behavior - what gives?

2009-08-09 Thread SChaser
I wrote a little test program that has a custom SurfaceView class and some buttons to let me cause various operations on them (draw bitmap over all of it - white or black, draw a circle on it, draw blue bitmap and circle). In each case, the drawing is done on a canvas obtained with

[android-developers] Re: Listview Tabhost

2009-08-09 Thread Gulfam
Hi, I am adding a list in tab host like this and its working fine. public class Main extends TabActivity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); { TabHost

[android-developers] How to create XML file Programmatically?

2009-08-09 Thread Prajkti
Hi all, I want to create an XML file to Store my Application Settings into. ( I can't use SharedPrefs because i want that Settings file later to be accessed by Some other Code.) I can easily create an XML with java's code and store it in File too. but in Android I can create xml with the same

[android-developers] Re: how to use preferences widgets together.

2009-08-09 Thread ANKIT SOMANI
hi, I followed the User Interface-Building Custom Component Is there any example of it like using the preferences with widgets. ? that will be more help full. Regards ~Ankit Somani 2009/8/6 peter heywoodpres...@gmail.com Create a class extends View or

[android-developers] Re: An App contains a BroadcastReceiver and an Activity

2009-08-09 Thread Gulfam
Hi Peacemoon You will add both broadcast receiver and activity in menifest. but on broadcast receiver you will register an action. For out goings call i have register action like this receiver android:name=OutGoingCallReceiverIntent

[android-developers] Re: can ListActivity and Tab widget can use in one activity?

2009-08-09 Thread tstanly
sorry, I was ignore about that... thanks anyway On 8月10日, 上午11時12分, Dianne Hackborn hack...@android.com wrote: You don't need to use ListActivity; just put a ListView in your layout and work with it directly. On Sun, Aug 9, 2009 at 6:38 PM, tstanly tsai.sta...@gmail.com wrote: hi

[android-developers] How/where to submit the apps to ADC2?

2009-08-09 Thread manoj
Hi friends, I developed an application for android. I would like to submit the same to ADC2 (Android Developer Challenge 2). I didnt find any source to submit the apps. Can any one please suggest me the sites to submit the apps? Thanks, Manoj.

[android-developers] Re: bluetooth use in android

2009-08-09 Thread Stefano Sanna
Hello. On Sun, Aug 9, 2009 at 7:10 PM, Honesthonestsucc...@gmail.com wrote: Hello, Stefano Sanna thanks for your great work. Thank you. I put one issue in your project please take a look at it and let me know. Thanks for feedback. It is probably a permission issue. AndroidManifest.xml

[android-developers] Re: Strange Bug in GPS!

2009-08-09 Thread JP
I've found that on the emulator as well... Didn't try to chase it down however and instead switched to an actual device. In order to test GPS coordinates in another hemisphere, I introduce temporary test code that moves the coordinates over and down. On Aug 9, 1:50 pm, Sharmila

[android-developers] Re: How/where to submit the apps to ADC2?

2009-08-09 Thread JP
Early August, Google was going to open a site for submitting apps. I haven't seen it yet but it'll come. On Aug 9, 10:31 pm, manoj manojkumar.m...@gmail.com wrote: Hi friends, I developed an application for android. I would like to submit the same to ADC2 (Android Developer Challenge 2).

[android-developers] Re: about the hardware acceleration of Skia drawing

2009-08-09 Thread Zhiguo Ge
Hi, Dianne Thanks for your reply. I heard that google is working on 2D Skia acceleration based on OpenGL. Is it true? On Tue, Aug 4, 2009 at 3:56 PM, Dianne Hackborn hack...@android.com wrote: No, Skia is not accelerated. On Mon, Aug 3, 2009 at 11:17 PM, Zhiguo Ge