[android-developers] Android Market - Status Saved Draft

2009-04-28 Thread Pascal Merle
Yesterday I uploaded two apps to the market, Ambient Light Sensor and later Sipdroid. While editing they already showed in the list as Saved Draft but after clicking Publish - Save they still remain with that status, and they don't show up in the market itself. I can't browse or download them.

[android-developers] Re: Hiding media files from Music Player

2009-04-28 Thread nEx.Software
A quick look shows at the source indicates the MediaScanner omits files that begin like ._ or are like Folder.jpg, AlbumArtSmall.jpg, AlbumArt_{...}_Large.jpg or AlbumArt_{...} _Small.jpg. But it all seems to be based on filename. Of course there's a native method in there processDirectory that I

[android-developers] Control F11 doesn't revert the orientation on emulator on SDK 1.5 Target

2009-04-28 Thread Chander Pechetty
I have an activity defined in the manifest with the attribute android:configChanges=orientation|keyboardHidden When I run the app on SDK 1.5, pressing Ctrl + F11 and change the orientation to landscape and then again press Ctrl+F11, the orientation of the emulator changes, but not the screen

[android-developers] How To Load Previous Activity Which Is Running In Background

2009-04-28 Thread Reghu
Hello, Is there any way to load previous activity which is running in background. 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] Is there any way to start a new activity from a service.

2009-04-28 Thread Reghu
Hi, Is there any way to start a new activity from a service. 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] END CALL Api

2009-04-28 Thread Rain
HI, Does anyone could end up connected phone call by api not to click the end call button? --~--~-~--~~~---~--~~ 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: SW (2D API) vs. HW (openGL) rendering

2009-04-28 Thread Alistair.
Take a look at SpriteMethodTest here http://code.google.com/p/apps-for-android/ Al. On Apr 27, 9:51 pm, mcmc manni...@gmail.com wrote: I'm trying to compare the difference in speed between software and hardware graphics rendering, but I'm a little confused... Can someone please give me a

[android-developers] Unable to call SOAP webservice using KSOAP2

2009-04-28 Thread Saravanan.K
Hi All, Please help me. Am trying to call a .net webservice from android I have done the emualtor proxy settings and am able to access the internet on the emulator but when i try to access the wsdl file from my android program am unable to do it... please help me Here is the code

[android-developers] Re: R cannot be resolved after updating to 1.5 SDK Pre, and trying to compile for 1.1

2009-04-28 Thread André Charles Legendre
Hi hc Under Unix to add tools directory to PATH you can do it in .bash_profile of your user : PATH=$PATH:/tools export PATH where xxx is the PATH of where you put the SDK Andre --~--~-~--~~~---~--~~ You received this message because you are subscribed to

[android-developers] Cant access paid apps in US

2009-04-28 Thread John Doe
Hi all I have an unlocked G1 bought it from ebay.I am currently in US and my phone is using ATNT in roaming mode. However I cant access paid apps. Is it because my account is set up from another country ? Thanks --~--~-~--~~~---~--~~ You received this message

[android-developers] Plugin 0.9 ADT with Eclipse (G4.3.2) on WIN XP SP3 problem

2009-04-28 Thread EvgenyV
Hi all! I've updated from 1.1 to 1.5 following http://developer.android.com/sdk/1.5_r1/upgrading.html 0.9 ADT plugin was succesfully installed. The Android plugin doesn't present in Window - Preferences options. So I can't perform step Update your Eclipse SDK Preferences. Using fully updated

[android-developers] Re: Application Not Responding (ANR) dialog

2009-04-28 Thread Mike Hearn
You can't adjust the timeout. If the ANR dialog gets in the way when your app is suspended during a breakpoint, that's probably a bug in the Android SDK framework. If it pops up generically when your program is running normally and you just want it to go away, you can't do that - you have to make

[android-developers] Re: Handler for map panning

2009-04-28 Thread jgostylo
Ok, I just tried to Override onDraw() in the MapView and it is a final method so I can't do that. Then I saw onAnimationEnd() as inherited from View so I decided to Override that. I set a break point and pan around the map but the method never gets executed. I am still looking for a solution.

[android-developers] ActivityInfo is null in Intrumentation class

2009-04-28 Thread a...@lg
@Override public void onStart() { super.onStart(); _intent = new Intent(Intent.ACTION_MAIN); _intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); _intent = _intent.setClass(getTargetContext(), ClassUnderTest.class); ActivityInfo ai = _intent.resolveActivityInfo(getTargetContext

[android-developers] Re: Android Market - Status Saved Draft

2009-04-28 Thread Pascal Merle
Yes, the two are checked. Anything else you can think of? Thanks, Pascal --~--~-~--~~~---~--~~ 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: Playing sound from memory

2009-04-28 Thread niko20
Hi, You can use the AudioTrack class to stream raw PCM data. On Apr 27, 7:50 pm, rookie1_1998 eric.yongjun.c...@gmail.com wrote: I need a way to play a short sound clip repeatedly very fast, with precise timing for musical purpose.  I looked around, and it seems like MediaPlayer and

[android-developers] Not able to play video from the network URL

2009-04-28 Thread Amit Panwar
Hi, I am not able to play the video streaming example from the samples provided in Android SDK for any video URL: ex: http://d.peperonity.com/c/d/4E76D7/12563/ssc3/home/062/akram.ak47/albums/dog_smoke.3gp The issue comes at the time of executing the prepare() method: and throws the following

[android-developers] Re: What is the correct way to refresh UI when I use android:configChanges=keyboardHidden|orientation

2009-04-28 Thread quakeboy
You might want to take a look at setRequestedOrientation if u want to .. On Apr 24, 1:53 pm, Wang He iptvph...@gmail.com wrote: Hi all when I use android:configChanges=keyboardHidden|orientation in my code, the activity will not destroy and recreate when I change from portrait to landscape,

[android-developers] Re: ActivityInfo is null in Intrumentation class

2009-04-28 Thread Omer Saatcioglu
did you add the intents to AndroidManifest.xml? On Tue, Apr 28, 2009 at 2:05 PM, a...@lg l.prade...@gmail.com wrote: @Override public void onStart() { super.onStart(); _intent = new Intent(Intent.ACTION_MAIN); _intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); _intent =

[android-developers] Re: TabHost launching Intent multiple times

2009-04-28 Thread Brian
I got the same behavior with the Tabs2 APIDemo source, which doesn't use Intents, but rather a TabContentFactory. Until the app gets an onDestroy, it seems to add new instances into the call stack, instead of reactivating the current one. After it gets an onDestroy, future launches work fine.

[android-developers] Re: MediaPlayer.start() doesnot work fine after calling MediaPlayer.seekTo(0)

2009-04-28 Thread Sudha
Hi, for now i have found a work around In onCompletionListener() am resetting the player and setting DataSource and then calling prepare() then start() so that no sounds are skipped. mp.setOnCompletionListener(new MediaPlayer.OnCompletionListener() { public void

[android-developers] Re: Webview Question: onCreate always get called when activity comes to foreground

2009-04-28 Thread Brian
Wow reading this first would have saved me a many, many hours. It's not just WebView apps, but can be as simple as Hello,World. I had a pretty complex app with intents in a tabhost that I thought was the problem, whittled down to a simple tabhost app with Intents, down to a tabhost with a view

[android-developers] Re: Making VideoView play automatically

2009-04-28 Thread l hx
now i found a matter in my device,but the emulation is ok. that is, when i use the movieview in camera to play video ,but when i come back to another activity in my app. the orientation of the screen is also transverse. who know why? On Sat, Apr 25, 2009 at 4:32 PM, Nithin Varamballi

[android-developers] Re: Handler for map panning

2009-04-28 Thread jgostylo
I am getting the panning recognition to work by overriding dispatchTouchEvent for MapView. I think I will just have to separate out the tasks and do the same thing for the zoom control On Apr 28, 6:03 am, jgostylo jgost...@gmail.com wrote: Ok, I just tried to Override onDraw() in the MapView

[android-developers] Re: MediaPlayer.start() doesnot work fine after calling MediaPlayer.seekTo(0)

2009-04-28 Thread Sudha
Oops I tried the below code: mp.setOnCompletionListener(new MediaPlayer.OnCompletionListener() { public void onCompletion(MediaPlayer mp) { mp.stop(); isPlayingSound = false; } }); then when the same sound is requested again called

[android-developers] sdk 1.5 digital keyboard

2009-04-28 Thread Mr.No
Hello, how i can get a reference to the digital keyboard? is the keyboard added to the activity? how i can set a other style to the keyboard? Where i get a documentaion of the digital keyboard? --~--~-~--~~~---~--~~ You received this message because you are

[android-developers] Re: Android Market - Status Saved Draft

2009-04-28 Thread Mariano Kamp
Did you check the two check boxes at the bottom? See screenshot. On Tue, Apr 28, 2009 at 8:31 AM, Pascal Merle pmerl...@googlemail.comwrote: Yesterday I uploaded two apps to the market, Ambient Light Sensor and later Sipdroid. While editing they already showed in the list as Saved Draft but

[android-developers] cupcake 1.5 r1 surfaceCreated is not called!!!

2009-04-28 Thread ad
I've created game, everything works fine on all previous android versions except current cupcake 1.5. It works even on cupcake pre release.I'm using exact the same build.xml, sources and resources. The problem is that surfaceCreated is not called : SurfaceHolder mSurfaceHolder =

[android-developers] Re: Android Market - Status Saved Draft

2009-04-28 Thread Pascal Merle
The solution is easy: There are two buttons Publish and Save. If you click Save it will be saved as a draft. If you click Publish it gets published. Easy, isn't it? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[android-developers] Re: Layout question - how to replicate what the iPhone does...

2009-04-28 Thread Anna PS
Thank you Jon, this is exactly what I needed! best wishes, Anna On Apr 28, 5:43 am, Jon Colverson jjc1...@gmail.com wrote: On Apr 27, 10:01 pm, Anna PS annapowellsm...@googlemail.com wrote: How would I even start to create a home screen that looks like this in Android? Essentially I need

[android-developers] Application doesnot quit on calling finish()

2009-04-28 Thread Sudha
Hi, I have been developing a game on Android and wrote a wrapper for J2ME classes, When notifyDestroyed() is called in my ME program and calling finish() but the application doesn't close correctly. The App goes to background and when launched again it shows an error message and presents an

[android-developers] 1.5 SDK problems

2009-04-28 Thread EvgenyV
Hi all! I just want to make sure that is not only my personal experience that the latest SDK 1.5. Looks like 1. 5 is causing couple of serious upgrade, installation and runtime issues. Should we wait for some quick local patch soon? Thanks, Evgeny

[android-developers] Re: build JNI C code fail ???

2009-04-28 Thread Keroro
Thank you, have been solution. On 4月27日, 下午11時19分, Michael MacDonald googlec...@antlersoft.com wrote: Keroro wrote: You need to supply variable names for all your function parameters, not just jinit j. Whybuilderror? buildand Error Message: ../mydroid$ make libmax target thumbC:

[android-developers] Re: Application doesnot quit on calling finish()

2009-04-28 Thread Jean-Baptiste Queru
finish() doesn't close your application, is just closes your activity. The Appliction object itself stays behind, as well, as the entire process, as long as there's memory available to keep them around, so that re-launching your app is faster then next time around. JBQ On Tue, Apr 28, 2009 at

[android-developers] Re: Webview Question: onCreate always get called when activity comes to foreground

2009-04-28 Thread Brian
A quick workaround for this in Eclipse, is to set your application's Run Configuration's Launch Action to Do Nothing. Now when you press the play icon to launch, it seems to just push the apk to the emulator and not launch it. Then you go in and click your app icon, and launch/relaunch behavior

[android-developers] Re: Application doesnot quit on calling finish()

2009-04-28 Thread Sudha
So can you please just brief me on where to concentrate and what all should be done while closing an app so that it is entirely erased from the memory when exited...? On Apr 28, 5:51 pm, Jean-Baptiste Queru j...@android.com wrote: finish() doesn't close your application, is just closes your

[android-developers] Re: Application doesnot quit on calling finish()

2009-04-28 Thread Streets Of Boston
Probably System.exit(). But why would you want to do that? Why not leave it up the the OS to kill your process when necessary? Your activities should be able to handle the Android life-cycle process correctly (onCreate, onResume, onPause, onDestroy, etc). On Apr 28, 8:56 am, Sudha

[android-developers] Re: Application doesnot quit on calling finish()

2009-04-28 Thread Jean-Baptiste Queru
This is not the way Android works. JBQ On Tue, Apr 28, 2009 at 5:56 AM, Sudha sudhaker...@gmail.com wrote: So can you please just brief me on where to concentrate and what all should be done while closing an app so that it is entirely erased from the memory when exited...? On Apr 28, 5:51

[android-developers] Re: java.lang.StackOverflowError when deserializing

2009-04-28 Thread Marco Schmitz
dear fadden, thanks a lot for Thread(ThreadGroup group, Runnable target, String name, long stackSize). this works perfectly :) greetings, darolla 2009/4/22 fadden fad...@android.com: On Apr 21, 2:17 am, DaRolla netzprofi.ma...@googlemail.com wrote: In order to work with a server object

[android-developers] Load Previous UI From Stack

2009-04-28 Thread Reghu
Hai Is there any way to load my previous UI from stack. My requirement is I click HOME from my current UI and now i am listening to a external event with the help of a service. When i get the external event i like to load my previous UI. Is there any way. What i did was... Intent

[android-developers] Re: Application doesnot quit on calling finish()

2009-04-28 Thread Sudha
I could leave the process to OS to kill but if I want to launch it again in no time i get exceptions as the memory allocated previously is not being erased. I am handling all the activities in the wrapper correctly but the problem seems to be: I have most of the references created and assigned

[android-developers] Re: Cupcake on ADP1

2009-04-28 Thread roland
Xavier Ducrohet wrote I'd also like to note that Android developer phones like the ADP1 are intended for application development, rather than daily use. Additionally, they are operator-neutral and country- neutral, so they may not include certain features found on end-user devices. in the

[android-developers] Re: Plugin 0.9 ADT with Eclipse (G4.3.2) on WIN XP SP3 problem

2009-04-28 Thread heyunh...@gmail.com
1.download SDK1.5 and 0.9ADT plugin 2.updata ADT to V0.9(it need not removed 0.8ADT) 3.Install SDK(windows-Preferences OPT) 4.Select SDK Target (Android 1.5) 5.set run configurations - Target (Select Automatic AVD.if cann't see AVD,u need creat an AVD by manual) It's will be fine. On Apr 28,

[android-developers] Re: Application doesnot quit on calling finish()

2009-04-28 Thread Jean-Baptiste Queru
Write your code such that it either cleans up those static variables or re-uses them if they've already been initialized. There are going to be many combinations of the lifecycle of your activity that will be similar to what you're seeing (e.g. your app going in the background, the phone getting

[android-developers] Re: GridView and BaseAdapter position bug

2009-04-28 Thread yarik...@gmail.com
I have exactly same problem. Why do we have 102 values of position when there is only 100 cells displayed on screen? position is changed like: 0, 0, 1, 2, 3... 99, 0 - what is the cause of that? Can someone from google team answer? That seems to be a bug, very annoying bug. Answer It's not a bug

[android-developers] Re: Plugin 0.9 ADT with Eclipse (G4.3.2) on WIN XP SP3 problem

2009-04-28 Thread Evgeny V
On Tue, Apr 28, 2009 at 4:28 PM, heyunh...@gmail.com heyunh...@gmail.comwrote: 1.download SDK1.5 and 0.9ADT plugin 2.updata ADT to V0.9(it need not removed 0.8ADT) 3.Install SDK(windows-Preferences OPT) 4.Select SDK Target (Android 1.5) 5.set run configurations - Target (Select Automatic

[android-developers] Re: 1.5 SDK problems

2009-04-28 Thread Andreas Frey
I think the same, working with the Google Maps API just does not work anymore. a simple example with a MylocationOverlay does only take ONE position via a geo fix command. All further submit positioins are ignored. Greetings Andy On 28 Apr., 14:40, EvgenyV evgen...@gmail.com wrote: Hi all!

[android-developers] Re: Plugin 0.9 ADT with Eclipse (G4.3.2) on WIN XP SP3 problem

2009-04-28 Thread Evgeny V
Thanks, FInally I got it works now after Eclipse reinstall only. On Tue, Apr 28, 2009 at 4:45 PM, Evgeny V evgen...@gmail.com wrote: On Tue, Apr 28, 2009 at 4:28 PM, heyunh...@gmail.com heyunh...@gmail.comwrote: 1.download SDK1.5 and 0.9ADT plugin 2.updata ADT to V0.9(it need not

[android-developers] Bug? Geo fix and sdk 1.5

2009-04-28 Thread Andreas Frey
Hello, I have a really simple Android Application using a MyLocationOverlay and a LocationManager to determine and show the current position via a Toast. But the geo fix command i submit via telnet does only work the first time i submit it. ALl later tries to update the position do not work.

[android-developers] Re: URGENT!!!!! Can't update apps in android market!!!

2009-04-28 Thread jsdf
I was finally able to solve this, but the solution made no sense at all. 1.) I upgraded to the ADT 0.9 SDK 1.5 (released yesterday), and used the 1.1 target within. 2.) I changed my AndroidManifest.xml to be the following. ?xml version=1.0 encoding=utf-8? manifest

[android-developers] Re: GridView and BaseAdapter position bug

2009-04-28 Thread Streets Of Boston
Don't rely on the order in which getView is called. It is not a bug. It is a decision of the design of the grid/list view not to be dependent on the order in which getView is called. Why getView with position '0' is called three times... i don't know. *If* this is a bug, it is only a peformance

[android-developers] Re: Directory to store files

2009-04-28 Thread Odessa Silverberg
Depends what you're going to save there. If it's some vital data to the application to work (i.e. SQLite Database, Preferences, etc.) then you have to save them in your applications directory on the phone. If it's some downloaded files, MP3s, Videos etc. then you can save it on the SD card. The

[android-developers] Help | RSS Reader Feeds | Socket Exception

2009-04-28 Thread Gaurav
Hi, I am trying to access rss feeds : RSSFEEDOFCHOICE = http://rss.news.yahoo.com/rss/entertainment;; Below is the code: try { // setup the url URL url = new URL(urlToRssFeed); // create the factory SAXParserFactory factory =

[android-developers] Re: Screen Orientation.

2009-04-28 Thread jrgraf...@googlemail.com
The problem for me though is that the constants returned never change after I set a preferred Orientation no matter how I rotate the Phone :/ On Apr 28, 4:34 am, Dianne Hackborn hack...@android.com wrote: getResources().getConfiguration().orientation contains the current orientation, as

[android-developers] Re: Android 1.5 SDK now available

2009-04-28 Thread AlexK
Hi, Why Android team does not include Ukraine language into release?! Translation to all applications was uploaded long time ago. Please take a look at https://review.source.android.com/Gerrit#all,open,n,z Items from 9613 till 9642 providing Ukraine language translation. And all items has a

[android-developers] Re: sdk 1.5 digital keyboard

2009-04-28 Thread Chander Pechetty
Read the blog post at http://android-developers.blogspot.com/search/label/Input%20methods and then API documentation --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

[android-developers] Re: Updated to Android SDK 1.5 r1 - adb connectivity problems

2009-04-28 Thread Chander Pechetty
Describe your platform, did you flash the 1.5 images onto your device ? http://www.htc.com/www/support/android/adp.html Unless enough details are provided, there is very little help one can give --~--~-~--~~~---~--~~ You received this message because you are

[android-developers] Re: Android 1.5 SDK now available

2009-04-28 Thread Al Sutton
I expect they're looking for a internal staff member who can confirm the translation is accurate and correct for the context in which it's used, hence why there are +1's on the code review, but no +1s for verification. Al. --- * Written an Android App? - List it at http://andappstore.com/ *

[android-developers] Re: Updated to Android SDK 1.5 r1 - adb connectivity problems

2009-04-28 Thread Rob Franz
Well I've not flashed the new image on the device - my target is still 1.1 (waiting until TMobile pushes 1.5 out to all users). Anything I develop for 1.5 I'm running on the simulator which works fine... that's good enough for my purposes at the moment. However it looks like I fixed the problem

[android-developers] Eclipse + cupcake + referenced projects in build path = VerifyError

2009-04-28 Thread Guillaume Perrot
In the previous SDK releases, we have our application cut into 3 android projects: * Project REAL (the real android project) * Project LIB1 (a non executable android project, just to make android reusable classes) * Project LIB2 (same as LIB1) LIB1 and LIB2 are android projects rather than J2SE

[android-developers] Re: out of memory exception on transferring large file to DataOutputStream

2009-04-28 Thread Mike Baroukh
Maybe you could try using httpclient ? haven't tried myself but using chunked request, the output will not be buffered. for exemple, cf http://www.java-tips.org/other-api-tips/httpclient/how-to-use-unbuffered-chunk-encoded-post-re.html Mike zeeshan a écrit : Hi Experts, I need to post

[android-developers] Eclipse + cupcake + other android projects in build path = VerifyError

2009-04-28 Thread Guillaume Perrot
We have an application cut into 3 android projects: * Project REAL (the real android project) * Project LIB1 (an android project without any activity, just to make android reusable classes) * Project LIB2 (same as LIB1) LIB1 and LIB2 are android projects rather than J2SE ones because LIB1 and

[android-developers] Re: Playing sound from memory

2009-04-28 Thread Marco Nelissen
On Mon, Apr 27, 2009 at 5:50 PM, rookie1_1998 eric.yongjun.c...@gmail.comwrote: I need a way to play a short sound clip repeatedly very fast, with precise timing for musical purpose. I looked around, and it seems like MediaPlayer and SoundPool don't guarantee lag-free playing. Is there

[android-developers] Re: Hiding media files from Music Player

2009-04-28 Thread Marco Nelissen
On Mon, Apr 27, 2009 at 11:32 PM, nEx.Software justin.shapc...@gmail.comwrote: A quick look shows at the source indicates the MediaScanner omits files that begin like ._ or are like Folder.jpg, AlbumArtSmall.jpg, AlbumArt_{...}_Large.jpg or AlbumArt_{...} _Small.jpg. But it all seems to be

[android-developers] Re: Screen Orientation.

2009-04-28 Thread Troglodad
I can get my phone to rotate one way only- If I rotate the phone onto the left side, as though I were going to use the keyboard. Upside down and right side, nothing. Also, I notice that only some programs rotate- the main screen doesn't rotate, but the browser, messaging and notepad do.

[android-developers] Re: Hiding media files from Music Player

2009-04-28 Thread Marco Nelissen
You put the files in a folder whose name starts with a period, and they still show up in the music app? Are you sure it's not the old files in the old location that are still showing? Can you check that there are actually entries in the media database whose path (the _data column) includes a

[android-developers] Re: Eclipse + cupcake + referenced projects in build path = VerifyError

2009-04-28 Thread Inderjeet Singh
I ran into the same problem this morning and was hating myself for being a compulsive early adopter. :) Also, the fact that you actually have to create a device before you can launch anything. Anyone else figured out what is going on? Inder On Tue, Apr 28, 2009 at 8:02 AM, Guillaume Perrot

[android-developers] Re: Launch android emulator on mingw/msys, but failed

2009-04-28 Thread Hua Xia
How to use emulator -verbose or -debug ? just type emulator -verbose or -debug in shell? 2009/4/27 Raphael r...@android.com What does it say if you run it with emulator -verbose or -debug init? R/ On Thu, Apr 23, 2009 at 9:17 PM, Edward xia...@gmail.com wrote: Hi, I built the android

[android-developers] Re: GridView and BaseAdapter position bug

2009-04-28 Thread Illidane
I have tried to do that - doesn't working for me :( Animation is running always without last cell. I think so: In first case there is a '0' at the end of position values. Without your algorithm all 100 animations is running, than without last ( and there is no '0' at the end ). With you alhorithm

[android-developers] SearchManager sample

2009-04-28 Thread André Charles Legendre
Hi I would like to find some examples to use android.app.SearchManager with maps. Any help welcome Andre --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] Re: Android 1.5 SDK now available

2009-04-28 Thread AlexK
A little trust for translation done by other vendors will help a lot :) On Apr 28, 5:35 pm, Al Sutton a...@funkyandroid.com wrote: I expect they're looking for a internal staff member who can confirm the translation is accurate and correct for the context in which it's used, hence why there

[android-developers] Re: Android 1.5 SDK now available

2009-04-28 Thread Fred Grott(shareme)
Xavier On the eclipse plugin, ADT 0.9 I am still getting a build path hiccup at project setup errors show up as: [2009-04-28 10:43:43 - DummyAndroid] no classfiles specified [2009-04-28 10:43:43 - DummyAndroid] Conversion to Dalvik format failed with error 1 once I go to build path and

[android-developers] Re: Android 1.5 SDK now available

2009-04-28 Thread AlexK
Thanks for explanation... I expecting more features for localization in cupcake release. Still in release are known issues: Virtual keyboard does not support several languages switching, still has issue with ALT and SHIFT key status (led)... Do you know which branch/tag will be used for future

[android-developers] Re: audio codec

2009-04-28 Thread intbt
Thanks, I think AudioTrack may be what I am looking for to read the codec output??? http://developer.android.com/reference/android/media/AudioTrack.html On Apr 27, 6:11 pm, benmccann benjamin.j.mcc...@gmail.com wrote: The 1.5 SDK includes Raw audio recording and playback APIs.  I think I'd

[android-developers] sdcard in avd SDK 1.5

2009-04-28 Thread longhairedsi
Hello, I've been trying to figure out how to use the sdcard that was generated when I created the avd file for the emulator in SDK 1.5 r1. In previous SDKs I set this in the Eclipse run configurations -sdcard c:\android\sd500m.img I could then access the sdcard through DDMS etc. How do i

[android-developers] Re: Hiding media files from Music Player

2009-04-28 Thread clark
On Apr 28, 8:33 am, Marco Nelissen marc...@android.com wrote: You put the files in a folder whose name starts with a period, and they still show up in the music app? Are you sure it's not the old files in the old location that are still showing? Can you check that there are actually entries

[android-developers] Re: GridView and BaseAdapter position bug

2009-04-28 Thread Streets Of Boston
Yikes Another option would be to start a timer at each getView call (using postDelayed and removeCallbacks methods; postDelayd to start timer, removeCallbacks to remove previous timer until the last call to getView). When the last timer times-out (the last non-remove postDelayed), the task

[android-developers] WebView in 1.5 loading pages in Browser app instead of in my app

2009-04-28 Thread Kenn Min Chong
Hi there! So, I have this app that has a WebView object in it and basically I used it to display websites within my app. In the previous SDK, this works fine, the websites would appear from within my app. Now, when I upgrade to 1.5, new websites are loaded in the Browser application instead!

[android-developers] Re: “The application xxxxxxxx (process xxxxxx) has stopped unexpectedly. Please try again .”

2009-04-28 Thread Kenn Min Chong
Hey guys! So i found the solution to debug this. Apparently ADB has a tool to show the debug logs of the OS, when I did that I saw the Out of memory error. Apparently, Android limits apps to use only 16megs of memory before automatically killing it. It'd be nice though if this error were shown

[android-developers] manipulate/generate a drawable

2009-04-28 Thread guruk
hi, is it possible to generate a drawable dynamicaly. for example i like to place a drawable on a button. but the design (gfx) is generated dynamicly. is that possible and how? thanks chris --~--~-~--~~~---~--~~ You received this message because you are

[android-developers] Re: Eclipse plugin 0.9

2009-04-28 Thread Tom Gibara
In my experience of Eclipse and how others use it, I'd say it's unusual to have several workspaces. Most development is done in one workspace with projects grouped into 'project sets'. You need particular workspace specific requirements to make it worth configuring multiple workspaces. Tom On

[android-developers] Re: Eclipse + cupcake + referenced projects in build path = VerifyError

2009-04-28 Thread Guillaume Perrot
Argh I deleted the first version of my topic but you had the time to answer it :p The right topic is located at http://groups.google.com/group/android-developers/browse_thread/thread/5537ae10e4143240 Sorry for the double post (though the second one has less errors in the text ;)) On 28 avr,

[android-developers] Re: sdcard in avd SDK 1.5

2009-04-28 Thread nEx.Software
It should automatically use the image created during creation of the AVD. On Apr 28, 8:52 am, longhairedsi longhaire...@googlemail.com wrote: Hello, I've been trying to figure out how to use the sdcard that was generated when I created the avd file for the emulator in SDK 1.5 r1. In

[android-developers] Re: Text in of a custom drawable

2009-04-28 Thread guruk
is there a chance to design new drawables dynamicly. for example right now i have a calendar, each day does have a color . now i like that its possible that each day does have a drawable that includes three bars with different colors. that mean i can create many drawables that fit all possible

[android-developers] Re: GridView and BaseAdapter position bug

2009-04-28 Thread Illidane
To Romain Guy: Ok, I understood that you think that it's NOT a bug and that you implement it how you want it be. But I need to say you, that in such situation is very hard, or sometimes is impossible to write good, stable, beauty, useful and competitive apps for Android, not only for me, but for

[android-developers] Re: Android Functional Testing (testing multiple activities)

2009-04-28 Thread Rick
Android functional testing across multiple activities: Since no one has really shown how to do this, and Android really only shows us testing a single activity, testing more complex applications will need cross-activity testing. How to do it? 1. Use InstrumentationTestCase 2. Use an

[android-developers] Re: GridView and BaseAdapter position bug

2009-04-28 Thread Romain Guy
No, you are just making assumptions about how it should work. Nowhere does it say that it should work the way you want it to work, that's not how it works and that's not how it will work. 2009/4/28 Illidane illid...@gmail.com: To Romain Guy: Ok, I understood that you think that it's NOT a bug

[android-developers] Re: Screen Orientation.

2009-04-28 Thread Dianne Hackborn
Yes, for 1.5 we only support rotating to the left (the same as the rotation on the G1). And some of the built-in apps turn off rotation. On Tue, Apr 28, 2009 at 8:33 AM, Troglodad troglo...@gmail.com wrote: I can get my phone to rotate one way only- If I rotate the phone onto the left side,

[android-developers] Re: Screen Orientation.

2009-04-28 Thread Dianne Hackborn
I don't know what to say, they certainly do in all the cases I know of. You must want to put together short as possible sample code showing the problem happening; otherwise, with no way to repro (and no code to see exactly what you are doing), I can't help any more. On Tue, Apr 28, 2009 at 7:23

[android-developers] Re: GridView and BaseAdapter position bug

2009-04-28 Thread yarik...@gmail.com
We have three times same value of pure the magical-generated position and the official answer it is NOT a bug. Ok, than I am Al Pacino. Why not to post algorithm of position generating? That looks fishy... On Apr 28, 7:44 pm, Romain Guy romain...@google.com wrote: No, you are just making

[android-developers] Re: Text in of a custom drawable

2009-04-28 Thread Dianne Hackborn
Subclass from Drawable, implement your drawing, instantiate it, and give it to the view you want to have use it. On Tue, Apr 28, 2009 at 9:30 AM, guruk ilovesi...@gmail.com wrote: is there a chance to design new drawables dynamicly. for example right now i have a calendar, each day does have

[android-developers] Re: Eclipse plugin 0.9

2009-04-28 Thread Al Sutton
I've got some Android apps, Some GWT + App Engine work, some Struts2 + Hibernate work, and a couple of versions of the same project (one dev, one release), each of which gets it's own workspace. I find using separate workspaces tends to lower memory usage and it's tidier if you're trying to work

[android-developers] Re: 1.5 SDK problem with WebView.getZoomControls()

2009-04-28 Thread jharby
On Apr 15, 10:47 pm, N4Spd robert.c...@gmail.com wrote: I have webview whose zoom controls are placed into a linearlayout at the bottom of the screen. It's been working fine on 1.1 but testing on the new 1.5 beta SDK shows that the zoom controls are scrunched. They still work, just the

[android-developers] Re: how to config APN in android?

2009-04-28 Thread nj_first
Does it has any plan to support it?I do want to know! --~--~-~--~~~---~--~~ 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] Re: Android Market - Status Saved Draft

2009-04-28 Thread Jonn Blanchard
Pascal, Sorry, I know you say you hit Publish - Save, but did you hit Publish OR Save - they are two different buttons, Save will do what you've described - but Publish will actually publish them Thanks On Tue, Apr 28, 2009 at 7:31 AM, Pascal Merle pmerl...@googlemail.comwrote: Yesterday

[android-developers] Re: Transparency on Views behaving differently in 1.5

2009-04-28 Thread simon
Settings the color to #0001 instead of # worked for me as well. On Apr 27, 6:41 pm, Selmi se...@centrum.sk wrote: didn't worked for me. but helped if i set color to #0001 instead of #. it happened when i tried to run application built on 1.1 sdk on 1.5emulator. On

[android-developers] SDK 1.5: unable to send SMS to another emulator

2009-04-28 Thread ivantipov
Hi, I used to be able to send SMS messages from one emulator instance to another; the reason why I didn't use Eclipse is because the app automatically replies to a certain SMS request, and the other device is used to receive it. That worked fine under SDK 1.1; however, with the upgrade to 1.5 I

[android-developers] Re: How to start serial interface(RS232) code in Android

2009-04-28 Thread dinozaur
Hello! I have quite difficult qestion... I have HTC G1 with android on board and I want to use an usb-RS232 converter to send text commands to Atmega uC. Do you have any ideas how do it? a hava one: use command cat file_nameport or reading cat file_name... but this works on pc, i will try it on

[android-developers] Re: Installation unsuccessful - Package file was not signed correctly

2009-04-28 Thread myth2loki
I met the same problem,how to fix it?it will drive me crazy soon.Help On 4月6日, 下午5时45分, Craig csab...@gmail.com wrote: I published my app on the market, and when I first tried installing it from there, I got the 'package file was not signed correctly' error. Uninstalling the unsigned

[android-developers] Google Login Service not working on SDK 1.5

2009-04-28 Thread farida
I downloaded the latest release of android SDK 1.5, but unable to give the credentials for the Google Login Service from devTools. Clicking on the Google button or any other button crashes. I need to specify the google credentials to access the calendar application so that I can customize it as

  1   2   3   >