[android-developers] Re: Maximum Size of Libs Can be loaded

2008-11-20 Thread Dianne Hackborn
Could you please take non-SDK discussion over to one of the platform groups such as android-platform? Thanks. On Wed, Nov 19, 2008 at 9:11 PM, Anonymous Anonymous [EMAIL PROTECTED] wrote: Hi All, I am still on with some experiments with JNI, Now i have an *.so like 200kb in size, but it

[android-developers] Is it possible to lock phone settings?

2008-11-20 Thread Morisato13
Okay, so I'm working with developers to design an app and I am curious if this is possible. No need to tell me how to do it, because I wouldn't understand anyways. I'm just curious if it is in the realm of possibility with the amount of freedom google gives. If you go into the phone settings,

[android-developers] Re: Maximum Size of Libs Can be loaded

2008-11-20 Thread Anonymous Anonymous
Moved and apologies. On Thu, Nov 20, 2008 at 1:53 PM, Dianne Hackborn [EMAIL PROTECTED]wrote: Could you please take non-SDK discussion over to one of the platform groups such as android-platform? Thanks. On Wed, Nov 19, 2008 at 9:11 PM, Anonymous Anonymous [EMAIL PROTECTED] wrote: Hi

[android-developers] Re: About running two different applications with the same code base

2008-11-20 Thread magicpig
Thanks for the info. On Nov 18, 1:43 pm, Dianne Hackbod [EMAIL PROTECTED] wrote: On Tue, Nov 18, 2008 at 12:02 PM, magicpig [EMAIL PROTECTED] wrote:       I am wonder whether we can runtwoseparated apps with thesamecodebase. Thesetwoapps aredifferentby a flag.      Here are some

[android-developers] Re: Can not push files to emulated sdcard

2008-11-20 Thread Thao
Great !!! One more step further now. It's only the beginning ! lol Good Luck ! Maybe see you all on the next post ! On Nov 20, 6:03 am, Asif k [EMAIL PROTECTED] wrote: Hi All, Finally it works According to Thao's suggestion , I opened emulator using command prompt rather than

[android-developers] Repeating alarm canceled on activity close?

2008-11-20 Thread songs
Is the following behavior documented somewhere and I just missed it? When I set a repeating alarm in response to a button click, the alarm triggers the expected event only if the activity is in the foreground. If I close or pause the activity, the alarm seems to disappear. When I set the same

[android-developers] Re: Repeating alarm canceled on activity close?

2008-11-20 Thread Dianne Hackborn
The alarm manager knows absolutely nothing about activities, so this would not be the normal behavior. It certainly works fine in other places. On Thu, Nov 20, 2008 at 12:46 AM, songs [EMAIL PROTECTED] wrote: Is the following behavior documented somewhere and I just missed it? When I set a

[android-developers] Re: About running two different applications with the same code base

2008-11-20 Thread Dianne Hackborn
On Thu, Nov 20, 2008 at 12:38 AM, magicpig [EMAIL PROTECTED] wrote: For this , would you mind telling me some example about how to use it? I have tried to find some but fail. Thanks a again. Look at android.app.AliasActivity. -- Dianne Hackborn [EMAIL PROTECTED]

[android-developers] Re: missing javax audio?

2008-11-20 Thread Dianne Hackborn
On Wed, Nov 19, 2008 at 8:21 PM, Robert Green [EMAIL PROTECTED] wrote: I motion for a petition for full audio API in the 1.1 SDK. Contributing patches would be a much more effective approach than a petition. -- Dianne Hackborn [EMAIL PROTECTED]

[android-developers] Re: Please share your knowledge on Content Provider in Android

2008-11-20 Thread Dianne Hackborn
I would suggest starting with something like the note pad example in the SDK, and modifying its content provider to suite your needs. On Wed, Nov 19, 2008 at 7:48 PM, yasmin afrose [EMAIL PROTECTED]wrote: Hi Casey, Thanks for your reply. I've tried the concept. I got one issue as Source not

[android-developers] Re: Please share your knowledge on Content Provider in Android

2008-11-20 Thread AndroidKid
Hi Dianne Hackborn, Thanks for your reply Fine.. I'll follow your inputs. Will you please tell the procedure to create Content Provider.. ie, 1. Extent ContentProvider 2. Add Provider tag 3. How can I assign the CONTENT_URI for my own content provider like that.. Since, I've

[android-developers] Re: Adding self to menus on other applications

2008-11-20 Thread Peli
Regarding menu icons not being displayed, a workaround has been posted in this thread: http://groups.google.com/group/android-developers/browse_frm/thread/3fed25cdda765b02 I agree that it makes sense to present an Activity chooser for well- defined actions (like Send), but I guess there are

[android-developers] javax.net.ssl.SSLException: Not trusted server certificate

2008-11-20 Thread AnuR
Hi, While I am trying to post a web page using DefaultHttpClient httpclient = new DefaultHttpClient(); CookieStore cookies = httpclient.getCookieStore(); HttpPost Postmethod = new HttpPost(https://url to post);// Submiting I agree page ArrayListBasicNameValuePair nvpairs = new ArrayList();

[android-developers] Re: How to disable the security/permission check?

2008-11-20 Thread blues
We need to target as more markets as we can. So we need to work on those phones already out from the carriers. Could you please pass this information to other people in Google. We do need a way to turn off security for this kind of enterprise software scenario. So more phones will be sold,

[android-developers] AudioHardwareRecordLoop - How to run on G1 phone

2008-11-20 Thread GnuHash
Hi Is there a way to run the AudioHardwareRecordLoop application on the google G1 phone? The application was available as a part of the android source. I was able to run the application on the emulator. But the executable's execute permission is being removed when i store the executable on

[android-developers] Re: Quality of audio recording from MediaRecorder

2008-11-20 Thread GnuHash
wrt the native interface: is it AudioSetInputFormat,AudioOpen, AudioRead etc? -GnuHash On Nov 20, 12:14 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: It is the only supported method in SDK 1.0. There is a native interface to audio input, but it will be changing in a future release and I

[android-developers] Re: problem with buttonListener

2008-11-20 Thread suchita bhardwaj
Hey all, when i start application with buttonlistener enabled and any line of code written in onClick(View v),,it shows messageApplication needs to closed forcefully. On Thu, Nov 20, 2008 at 12:24 PM, 心蓝 [EMAIL PROTECTED] wrote: Usually i do like this: Intent i = new Intent();

[android-developers] Re: Listening for dynamic buttons created by an adapter

2008-11-20 Thread Mark Murphy
alexdonnini wrote: Hello, I think I may have solved the problem. As I suspected (if I am right), the solution was pretty simple. All I had to do is change: kill2 = (Button) findViewById(R.id.kill2); to kill2 = (Button) convertView.findViewById(R.id.kill2); Ah, yes.

[android-developers] Re: problem with buttonListener

2008-11-20 Thread for android
In the next activity u may be doing somthing thats throwing the xception. Go to Eclipse -Window-ShowView-LogCat..and see the log trace there. On Thu, Nov 20, 2008 at 6:10 PM, suchita bhardwaj [EMAIL PROTECTED]wrote: Hey all, when i start application with buttonlistener enabled and

[android-developers] Extract some information from an APK file

2008-11-20 Thread Android Freeware
Hello, is there a way to extract the following data directly from a compiled and signed APK file: 1) name of the package (e.g. 'com.example.android.app') 2) versionCode (e.g. '1') 3) versionName (e.g. '1.0.0') 4) path to the application icon (e.g. '/res/drawable/icon.png') Thank you in advance

[android-developers] 2D over 3D

2008-11-20 Thread petunio
Hi I am porting an application based on the sdk 3.0, and I am having countless problems... now, I am struggling trying to put 2D graphics on top of a 3D scene... After a lot of headache, I managed to create a opengl context, which now works, but when I try to put 2D graphics on top of it, this

[android-developers] Re: error in opening file in fileexplorer application

2008-11-20 Thread Charlie Collins
I am not familiar with that particular application, but it looks like you need the Intent and IntentFilter setup correctly for the action action=android.intent.action.VIEW data=file:///sdcard/1.txt. Sorry if that's obvious, but does your manifest have a filter for that action, which specifies

[android-developers] Notification details Activity never receives Intent used to fire it

2008-11-20 Thread Matthias
Hi, I have the following problem: When posting a new Notification, I pass along a PendingIntent used to fire up an Activity that shows details about this Notification. These details are passed as a Serializable Extra. However, the Intent holding the Extra is only updated once, when the Activity

[android-developers] Re: Location-based Service APIs

2008-11-20 Thread Charlie Collins
I am not sure I follow the question here, in terms of Mock vs actual (are you using the emulator, or an actual device, and if you are using the emulator remember you have to send a location to it before it will have a location set, if you just start it up, it won't know where it is - use the DDMS

[android-developers] Files : Absolute and relative path

2008-11-20 Thread [EMAIL PROTECTED]
Hi, I use the method ctxt.openFileOutput(path_file, Context.MODE_PRIVATE). I can't open a file when I add a folder. For example, when I do this : ctxt.openFileOutput(dir/file, Context.MODE_PRIVATE). It generates an IllegalArgumentException. How can I open a file in a specific directory ? Regards.

[android-developers] Re: Files : Absolute and relative path

2008-11-20 Thread Mark Murphy
[EMAIL PROTECTED] wrote: Hi, I use the method ctxt.openFileOutput(path_file, Context.MODE_PRIVATE). I can't open a file when I add a folder. For example, when I do this : ctxt.openFileOutput(dir/file, Context.MODE_PRIVATE). It generates an IllegalArgumentException. How can I open a file in

[android-developers] Netbeans

2008-11-20 Thread moa
Does anyone know what the current state is for development with the netbeans ide? --~--~-~--~~~---~--~~ 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: missing javax audio?

2008-11-20 Thread Robert Green
That's very unfortunate. iPhone has one up on the android in this arena. On Nov 20, 12:26 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: We have no plans to support the Javax multimedia classes at this time. On Nov 19, 8:21 pm, Robert Green [EMAIL PROTECTED] wrote: I motion for a petition

[android-developers] Re: Location-based Service APIs

2008-11-20 Thread salman.geek
Well thanks for your reply but ma dear friends i have mentioned that i m getting data through MockLocation e.g using DDMS view by Hardcoding the Longitude and Latitude. If i want to communicate with GPS and get ma location from there.How can that happen? Please help me. On Nov 20, 6:22 pm,

[android-developers] Re: Files : Absolute and relative path

2008-11-20 Thread [EMAIL PROTECTED]
The directory exists. I even do this to be sure : this.getApplicationContext().getDir(dir, this.getApplicationContext().MODE_PRIVATE); What is the problem ? On Nov 20, 2:45 pm, Mark Murphy [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote: Hi, I use the method ctxt.openFileOutput(path_file,

[android-developers] Re: Go from one Screen to another screen

2008-11-20 Thread loty
Personally I find intents and activities very limiting. Not everything needs to be an activity sometimes new screen is just an alternative view of the same activity or extends your activity. Look into ViewFlipper and related classes. You need to decide what new screen represents On Oct 28, 5:55 

[android-developers] Re: Netbeans

2008-11-20 Thread Thustle
I've not tried it yet... http://kenai.com/projects/nbandroid/pages/Install On 20 Nov, 14:08, moa [EMAIL PROTECTED] wrote: Does anyone know what the current state is for development with the netbeans ide? --~--~-~--~~~---~--~~ You received this message because

[android-developers] Re: Notification details Activity never receives Intent used to fire it

2008-11-20 Thread Matthias
I think this may be a bug in Android. I also tried following the instructions from the docs under section Launch Modes and Launch Flags with no success. That section suggested to declare any Activity launched from NotificationManager to set the taskAffinitity to and finishOnTaskLaunch to true,

[android-developers] Licensing question pertaining to the dex compilation process

2008-11-20 Thread Nik Bhattacharya
I have a requirement that any 3rd party libraries that I use in my Android project should be dynamically linked from our source. I have put third party jars into a lib directory and use those jars on the classpath for my project. However, with the dex compilation process, all of the classes are

[android-developers] Re: Notification details Activity never receives Intent used to fire it

2008-11-20 Thread Matthias
This gets weirder every minute. Just out of curiosity I just called setIntent(null) in onPause() to make sure the Intent the Activity was started with is always reset. As soon as I start the Activity again though, getIntent() will AGAIN return the Intent I supposedly set to null before..

[android-developers] Permission READ_LOGS

2008-11-20 Thread Peli
I've seen that there is a permission READ_LOGS: http://code.google.com/android/reference/android/Manifest.permission.html#READ_LOGS Does this mean there is a possibility for applications to read the content of the Log.d(), Log.w(),... output? Peli

[android-developers] Setting Use by default for this action option crashes when attempting to replace a standard application

2008-11-20 Thread Thao
Hi All, I try to replace the standard contact application by my custom application. Now that I click on the android contact icon, it prompts me with launching the standard contact app AND my custom app...That's cool... If I launched my custom app from this, it work very well. But when I select

[android-developers] Setting Use by default for this action option crashes when attempting to replace a standard application

2008-11-20 Thread Thao
Hi All, I try to replace the standard contact application by my custom application. Now that I click on the android contact icon, it prompts me with launching the standard contact app AND my custom app...That's cool... If I launched my custom app from this, it work very well. But when I select

[android-developers] Help screen dialog

2008-11-20 Thread brs
Does anybody have sample code for a help/about dialog box to display a lengthy detailed description of the application.? What's the easiest way to do that? Bernhard --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[android-developers] Re: Notification details Activity never receives Intent used to fire it

2008-11-20 Thread Guillaume Perrot
I have this bug too, It works better when I put a requestCode in the PendingIntent, but according to the documentation, this parameter is not used... Strange... Even by doing that it sometimes fail, but without that, it surely fails as you both noticed. Here is the way I post my notification:

[android-developers] Re: Quality of audio recording from MediaRecorder

2008-11-20 Thread [EMAIL PROTECTED]
No, the native interface is found in include/media/AudioRecord.h. On Nov 20, 4:18 am, GnuHash [EMAIL PROTECTED] wrote: wrt the native interface: is it AudioSetInputFormat,AudioOpen, AudioRead etc? -GnuHash On Nov 20, 12:14 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: It is the only

[android-developers] Unable to resolve superclass of Overlay and MapPoint

2008-11-20 Thread PBWebGuy
I am running into a problem with just trying to instantiate a subclass to Overlay. I started with the Snake demo applicaiont and added a new class. When I try and run the application I get the error: W/dalvikvm( 2748): Unable to resolve superclass of Lcom/example/ android/snake/SnakeOverlay;

[android-developers] RSS Normalizing Crashes App

2008-11-20 Thread AJ Quick
I'm writing a script that takes a RSS and phrases items.. but it is crashing on part of the code. I'm using the code from: http://www.devx.com/wireless/Article/39810/1954 private void DownloadRSS(String URL) { InputStream in = null; try { in =

[android-developers] Saving Reading Webview

2008-11-20 Thread umair_Yar_khan
Hello Every One , I am working on the WebView and i want to save the webView object and then read it , Now i able to save webview object successfully but my ObjectinputStream cannot able to read the object. Here is my source code : public class myCustomWebView extends WebView implements

[android-developers] How do I transfer my .adk to the \system\app directory?

2008-11-20 Thread kylefei...@gmail.com
I built a simple hello world application and I have the .adk file. i transfered the .adk file onto my g1 phone. I see it in the top- level directory, but how can I execute it now? I think I need to copy it to the system\app directory on the phone (where I see the rest of the .adk files)...

[android-developers] Re: Blue Screen of Death when debugging againstactual phone

2008-11-20 Thread pjfingers
I had this exact same issue running Windows XP sp3 and Eclipse 3.3. It went away all on it's own when I un-installed and re-installed the Android USB drivers. Don't really know what the deal was. On Oct 31, 11:04 pm, Greg [EMAIL PROTECTED] wrote: I'm not using the command line to do anything.  

[android-developers] Serialization of WebView Object

2008-11-20 Thread umair_Yar_khan
I m trying to serialize the webView object but could not able to do so , i successfully saved it , but cannot able DeSerialized it , any suggestions ? Thanks In Advance ... here is the code , BEGIN CODE *** public class

[android-developers] Can anyone make an android app for our web application ?

2008-11-20 Thread 2 Levels Above
We are an automotive portal called AllTheRides.com Would any developer/developers be interested in making the first automotive android app ? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group.

[android-developers] FTP Client

2008-11-20 Thread Phubeone
Is anyone out there working on a FTP client for Android or does anyone know if one is already available? I have been looking for awhile and haven't found anything. Thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[android-developers] image to text conversion

2008-11-20 Thread merin
I have some camera shots which contains mainly text. I want to convert them to a string format. Can anybody suggest a solution for it? Is there any external library available for android? --~--~-~--~~~---~--~~ You received this message because you are subscribed

[android-developers] Re: Eclipse Plug-in Site down?

2008-11-20 Thread Henry Hu
Although the browser says 404, eclipse can update plugin from the http address. On Nov 16, 1:49 pm, Sohail Mirza [EMAIL PROTECTED] wrote: Actually, I can confirm that the http site isn't working either.  Both appear to be down.  Navigating to either in your browser gets you the following HTTP

[android-developers] Re: Quality of audio recording from MediaRecorder

2008-11-20 Thread Dorn Hetzel
I would really love a clue here as well, MediaRecorder is completely unworkable for my application, so it's either use the native interface or wait for another release, which I would rather not do... On Thu, Nov 20, 2008 at 7:18 AM, GnuHash [EMAIL PROTECTED] wrote: wrt the native interface:

[android-developers] Re: ListView set default checked state

2008-11-20 Thread Armando
I achieved this by creating a custom Adapter. All you need to do is to create a new class that extends the BaseAdapter abstract class, then for the implementation you can take a look at the following sample from the API demos:

[android-developers] Re: missing javax audio?

2008-11-20 Thread Dorn Hetzel
What mic-memory and memory-speaker method(s) *do* you plan to support? Not to complain, android is wonderful, but mic-file and file-speaker just won't work for many applications. On Thu, Nov 20, 2008 at 1:26 AM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: We have no plans to support the Javax

[android-developers] ViewFlipper onFlipListener

2008-11-20 Thread Ngewi
Hi everyone, I am using the ViewFlipper class with automatic flipping through views. Is there a way to get notified or register a listener to be called each time just before a new child view is displayed. (i.e with automatic flipping ). So far I have not seen any listeners in the documentation

[android-developers] can not create Surface and ISurface successfully

2008-11-20 Thread Ye Haomiao
hi, I try to use SurfaceComposerClient and SurfaceFlinger to create a Surface, but all failed, the point = null, can you help how to create a surface? when I try to spSurface mysurface = client-createSurface(getpid(), 0, info.w , info.h, info.pixelFormatInfo.format , 0); and spISurface

[android-developers] Custom ImageButton Shape

2008-11-20 Thread Lewis
I plan to create an imagebutton which I would like to make a nonstandard shape (e.g. a circle). Any general ideas on how I would go about this? Cheers --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: missing javax audio?

2008-11-20 Thread Dorn Hetzel
Dianne, Give even a general description of what patches would help get this lack of audio functionality dealt with in a way that would be accepted for inclusion in the base, and I bet someone will take up the challenge... Regards, Dorn Hetzel On Thu, Nov 20, 2008 at 4:08 AM, Dianne Hackborn

[android-developers] How to force portrait mode?

2008-11-20 Thread Brian Doyle
Hello, I need to force the portrait layout on our app at all times, meaning when the phone is rotated to landscape orientation the view should appear sideways, whether or not the keyboard is out. How to I enforce this? BTW - I understand why this is undesirable but I'm

[android-developers] Is there a hook to run code on device shutdown (power off)?

2008-11-20 Thread Jon Colverson
Hello. Part of the app I'm writing is a Service that does some work. If it hasn't finished when the user switches the device off I'd like to be able to save my state to a file and then restart the Service when the device starts up again. I can see how to start it up again (receive the

[android-developers] Text-To-Speech

2008-11-20 Thread Peach
I am not able to even see this app on the Market. Can someone help me find it or something plz. Oh and what's been up w/ Aim, am I the only person still having issues w/ that as well? I mean I love this phone but it has a lot of issues. Lol No Video camera, u can't add videos other then ones

[android-developers] ADB blue-screen when installing my app

2008-11-20 Thread Mike Collins
The signed, release build .apk works on the emulator just fine. On a 32-bit Windows XP/Pro SP3 box I can get ADB to see the physical phone, e.g. adb devices lists the device. But every attempt to install (adb install .apk) blue-screens the box. Any ideas? tia, mike collins

[android-developers] Re: ADB via USB

2008-11-20 Thread Mike Collins
I have a signed release build of a test app, the .apk can be loaded into the emulator and works just fine. When I attempt to load it into a real G1 the box blue-screens immediately and reboot before I can see anything. Details 32-bit Windows XP SP3 Pro ADB can see the device when connected

[android-developers] battery level

2008-11-20 Thread brs
Is there a way for an application to get access to the current percentage estimate of the battery charge level? Basically the number which is displayed in Settings-About phone-Status. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

[android-developers] Setting Use by default for this action option crashes when attempting to replace a standard application

2008-11-20 Thread Thao
Hi All, I try to replace the standard contact application by my custom application. Now that I click on the android contact icon, it prompts me with launching the standard contact app AND my custom app...That's cool... If I launched my custom app from this, it work very well. But when I select

[android-developers] Setting Use by default for this action option crashes when attempting to replace a standard application

2008-11-20 Thread Thao
Hi All, I try to replace the standard contact application by my custom application. Now that I click on the android contact icon, it prompts me with launching the standard contact app AND my custom app...That's cool... If I launched my custom app from this, it work very well. But when I select

[android-developers] Re: missing javax audio?

2008-11-20 Thread Robert Green
Agreed. The API really needs input and output streams. It's tough to make any creative audio application the way it is right now. On Nov 20, 8:11 am, Dorn Hetzel [EMAIL PROTECTED] wrote: What mic-memory and memory-speaker method(s) *do* you plan to support? Not to complain, android is

[android-developers] Re: Location-based Service APIs

2008-11-20 Thread Alvin Yates
It's the same as if you were doing it with real GPS. You're simulating GPS communication. It isn't a separate interface/method/ setup at all. On Nov 20, 6:27 am, salman.geek [EMAIL PROTECTED] wrote: Well thanks for your reply but ma dear friends i have mentioned that i m getting data through

[android-developers] Re: Notification details Activity never receives Intent used to fire it

2008-11-20 Thread Matthias
Guillaume, you're my hero. Thanks! Works like a champ now. Curse Google and their terrible documentation, I spent the whole day hunting down a bug that ain't there... great. Now I'll go home and bang my head at the wall for the rest of the day. On 20 Nov., 17:59, Guillaume Perrot [EMAIL

[android-developers] Re: Need help using hat to track down memory usage

2008-11-20 Thread qvark
If the output is not compatible with a standard hprof format, could somebody at Google point out the differences and the motivations for them? With such advice we could try to adapt a tool or make the format compatible with the existing ones... We are suffering from memory leak problems and we

[android-developers] Re: Text-To-Speech

2008-11-20 Thread Pulkit Arora
Is this actually working in emulator ?? which sdk does it support ?? On Thu, Nov 20, 2008 at 11:14 PM, Alvaro Rivas [EMAIL PROTECTED]wrote: May be you can use the freeTTS-Android interface. It's only for presentation purposes in the emulator. I Dont know if it is the best solution to resolver

[android-developers] Re: Text-To-Speech

2008-11-20 Thread Alvaro Rivas
I Tested it on 1.0. It works! READ carefully the howto document. 2008/11/20, Pulkit Arora [EMAIL PROTECTED]: Is this actually working in emulator ?? which sdk does it support ?? On Thu, Nov 20, 2008 at 11:14 PM, Alvaro Rivas [EMAIL PROTECTED]wrote: May be you can use the freeTTS-Android

[android-developers] Re: FTP Client

2008-11-20 Thread petunio
hi if what you need is upload/download files to and from a server, I recommend you jakarta: http://jakarta.apache.org/commons On Nov 19, 10:03 pm, Phubeone [EMAIL PROTECTED] wrote: Is anyone out there working on a FTP client for Android or does anyone know if one is already available?  I have

[android-developers] NUMBER_KEY not updated when phone number in Contacts is changed by user

2008-11-20 Thread Jay-andro
There is a bug (first reported in January 2008, see http://markmail.org/message/33mcd6w7zgs76suy) that still exists on RC30, where if you Edit an existing contact and change its phone number (I tried it on mobile number, probably occurs for all numbers), the the internal representation of the

[android-developers] Re: Notification details Activity never receives Intent used to fire it

2008-11-20 Thread Guillaume Perrot
Note that your pending intents still may collide with this mysterious request codes. Since we have the source code now, it may be good to check if this is really used or not, and how. 2008/11/20 Matthias [EMAIL PROTECTED] Guillaume, you're my hero. Thanks! Works like a champ now. Curse

[android-developers] Changing Google image server

2008-11-20 Thread Robert
I am looking for a way to change which Google server our Android app will look too when pulling in imagery. We have an Enterprise Google server purchased from Google that will serve up imagery. Does anyone know of anyway to get Android pointing to that server instead of the public Google server?

[android-developers] Re: ViewFlipper onFlipListener

2008-11-20 Thread loty
I don't understand it - you tell ViewFlipper to flip views, it doesn't flip anything on it's own. So why can't you keep track of your views in the event handler that initiates your flips? On Nov 20, 4:38 am, Ngewi [EMAIL PROTECTED] wrote: Hi everyone, I am using the ViewFlipper class with

[android-developers] Re: Need help using hat to track down memory usage

2008-11-20 Thread fadden
On Nov 20, 9:48 am, qvark [EMAIL PROTECTED] wrote: If the output is not compatible with a standard hprof format, could somebody at Google point out the differences and the motivations for them? With such advice we could try to adapt a tool or make the format compatible with the existing

[android-developers] Re: missing javax audio?

2008-11-20 Thread Sundog
Agreed, it's very hard to do something innovative when I can't even do simple things like fire off a few sounds on demand and have it work in any kind of synchronous manner. I hope MediaPlayer is getting a lot of attention, I have two apps on hold right now for this very reason. On Nov 20, 11:24 

[android-developers] Re: Text-To-Speech

2008-11-20 Thread Pulkit Arora
Thanks for the reference Alvaro.. On Thu, Nov 20, 2008 at 11:26 PM, Alvaro Rivas [EMAIL PROTECTED]wrote: I Tested it on 1.0. It works! READ carefully the howto document. 2008/11/20, Pulkit Arora [EMAIL PROTECTED]: Is this actually working in emulator ?? which sdk does it support ?? On

[android-developers] Linkify addresses

2008-11-20 Thread loty
Does anyone have any idea what MAP_ADDRESSES pattern supposed to match? I added Linkify ALL to my EditText and it properly matches all URLs and phone numbers but does nothing for addresses. Also Linkify thinks that any number is a phone number which is insane - what were google dudes smoking and

[android-developers] Re: missing javax audio?

2008-11-20 Thread Robert Green
And I'm using SoundPool which is an unsupported API, but it still doesn't offer streaming from memory capabilities. On Nov 20, 12:37 pm, Sundog [EMAIL PROTECTED] wrote: Agreed, it's very hard to do something innovative when I can't even do simple things like fire off a few sounds on demand and

[android-developers] Re: missing javax audio?

2008-11-20 Thread Dan Bornstein
On Thu, Nov 20, 2008 at 11:24 AM, Dorn Hetzel [EMAIL PROTECTED] wrote: There already are Android-specific classes and methods for a lot of audio-related functionality... At least for my applications, which would be new code for the android platform, not ports from somewhere else, I don't

[android-developers] Re: missing javax audio?

2008-11-20 Thread Dorn Hetzel
Dan, There already are Android-specific classes and methods for a lot of audio-related functionality... At least for my applications, which would be new code for the android platform, not ports from somewhere else, I don't care if it's javax.sound or whatever, as long as I can move bits from

[android-developers] Re: missing javax audio?

2008-11-20 Thread Dorn Hetzel
Dan, I must be overlooking something? The only audio input method that I can find documented there is MediaRecorder, and it seems to only know how to send audio to a file. Can you point a little more closely at whatever method will allow collecting audio input to a memory buffer and sending

[android-developers] Re: Text-To-Speech

2008-11-20 Thread Alvaro Rivas
hopefully! I'm european citizen, so no G1 available. Did you get latency problems with the emulator? 2008/11/20 blindfold [EMAIL PROTECTED] Did anyone try it on the T-Mobile G1? Is TTS latency acceptable there? Thanks On Nov 20, 6:56 pm, Alvaro Rivas [EMAIL PROTECTED] wrote: I Tested it

[android-developers] Scrolling with Multiple ListViews

2008-11-20 Thread Andrew Burgess
Hello all, I'm completely stumped on this one. I have three different lists that need to be displayed on the screen. It's completely possible that the lists will extend past the bottom edge of the screen, so I would need scrolling. I've tried using a ScrollView with a LinearLayout child, and

[android-developers] Re: Scrolling with Multiple ListViews

2008-11-20 Thread Romain Guy
Hi, ListView is a virtualized component, it displays only as many items as it needs, which is why you cannot put it in inside a ScrollView. The only way to make it work is to give a fixed height to the ListView yourself. This is however a very bad idea to put a scrollable widget inside a

[android-developers] Re: Scrolling with Multiple ListViews

2008-11-20 Thread Andrew Burgess
So essentially multiple ListViews on a single screen are a pretty big no-no. Fair enough, I'll try something else. Thanks for the response. On Thu, Nov 20, 2008 at 3:01 PM, Romain Guy [EMAIL PROTECTED] wrote: Hi, ListView is a virtualized component, it displays only as many items as it

[android-developers] Re: Scrolling with Multiple ListViews

2008-11-20 Thread Romain Guy
You can put multiple ListView on the same screen if they all fit together on screen. But I would find that UI design questionable :) On Thu, Nov 20, 2008 at 12:05 PM, Andrew Burgess [EMAIL PROTECTED] wrote: So essentially multiple ListViews on a single screen are a pretty big no-no. Fair

[android-developers] Re: missing javax audio?

2008-11-20 Thread blindfold
Thanks Dan, that is quite informative! We are absolutely committed to improving audio support. Great to hear that! You can find the javax.sound code, as it currently exists, in the open source tree at /platform/dalvik/libcore-disabled/. OK, at

[android-developers] Re: missing javax audio?

2008-11-20 Thread Dan Bornstein
On Thu, Nov 20, 2008 at 12:16 PM, blindfold [EMAIL PROTECTED] wrote: You can find the javax.sound code, as it currently exists, in the open source tree at /platform/dalvik/libcore-disabled/. [...] ...the specific patches she presumably meant would be patches to make this as-yet incomplete

[android-developers] Re: Text-To-Speech

2008-11-20 Thread blindfold
Hi Alvaro, I haven't tried (your) TTS, but with my own app, which writes audio to flash in order to play it through MediaPlayer, I got a user report that it takes four or five seconds for a sound update on the G1 while it runs fairly smoothly on the emulator (less than one second latency there).

[android-developers] Re: javax.net.ssl.SSLException: Not trusted server certificate

2008-11-20 Thread Anders Rundgren
Are you using a commercial SSL cert vendor like VeriSign. If not you need to either disable certficate validation or install the trust anchor of the SSL cert. I don't have the G1 som I only know how to do it on the emulator. It wasn't easy BTW since Android does not use the standard SUN format

[android-developers] Re: missing javax audio?

2008-11-20 Thread blindfold
Fair enough. Sorry (also to Ethan) for perhaps distracting a bit from javax.sound even though Java ME supports much the same javax.sound AudioInputStream functionality that Ethan was specifically inquiring about. Glad to hear that our ideas match. It should help in getting the actual work done.

[android-developers] Re: battery level

2008-11-20 Thread b2amedina
yes, u need to listen to the battery intents. I just put an app out in the marketplace (Power Manager)that does this On Nov 20, 12:14 pm, brs [EMAIL PROTECTED] wrote: Is there a way for an application to get access to the current percentage estimate of the battery charge level? Basically the

[android-developers] Re: Fwd: Send DTMF

2008-11-20 Thread j
Yes Rimma's method works if the program wishes to play DTMF tones when the call connects. It also works if you replaced ; with ,. My further question is: How can an Android program play outgoing DTMF tones in the middle of a phone conversation? Is that possible? On Nov 9, 11:56 pm, Rimma

[android-developers] Re: Android Market's Publish Button does nothing

2008-11-20 Thread Michael
Any error message? This process has been working for lots of other people, including myself --~--~-~--~~~---~--~~ 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: Notification details Activity never receives Intent used to fire it

2008-11-20 Thread Dianne Hackborn
I am really not clear on exactly what you are doing or expecting, but one thing to watch out for -- when you get a PendingIntent, if there is already a PendingIntent matching the Intent you have been given (NOT including the extras), then you get that PendingIntent, NOT a new one. So if you want

[android-developers] Re: Is there a hook to run code on device shutdown (power off)?

2008-11-20 Thread Dianne Hackborn
Sorry, there is nothing available to find out when the device is being turned off. On Thu, Nov 20, 2008 at 5:37 AM, Jon Colverson [EMAIL PROTECTED] wrote: Hello. Part of the app I'm writing is a Service that does some work. If it hasn't finished when the user switches the device off I'd

  1   2   >