[android-developers] Re: failure to connect to database

2008-04-25 Thread scimitar
Ok. Now I'm trying to communicate with a webservice. The problem is that I need to import java.rmi.RemoteException for something like: String ret = (String) call.invoke(String method, Object[] o); But the Android Eclipse plugin would not allow me to import java.rmi.RemoteException, saying that

[android-developers] Re: How to Create a new Content Providers on Android Platform

2008-04-25 Thread Naveen Garg
many many thanks... On Apr 24, 4:02 pm, Hielko [EMAIL PROTECTED] wrote: See the noteslist example in the sdk On Apr 24, 6:42 am, Naveen Garg [EMAIL PROTECTED] wrote: I am trying to create a new content provider in android but have not seen any sample code on the net so far. I will be

[android-developers] Re: How to Create a new Content Providers on Android Platform

2008-04-25 Thread Naveen Garg
thanks dude!! On Apr 24, 5:08 pm, Charlie Collins [EMAIL PROTECTED] wrote: As Heilko states, the NotePad example (samples/NotePad) has a provider. The WikiNotes example app Dick Wall of Google wrote has a ContentProvider (yes, the Dick Wall for the inside joke

[android-developers] Re: failure to connect to database

2008-04-25 Thread Charlie Collins
Actually, same deal there, you shouldn't really be trying to use a SOAP webservice (which I assume is what you mean, since you are talking about RemoteException?) from a small embedded device either. The reason why is this is that Android has a limited API, which is designed for it's limited

[android-developers] Re: failure to import java.rmi.RemoteException

2008-04-25 Thread vol
Android does not utilize the entirety of the J2SE API. Remember, it's designed for mobile devices which are resource limited, so they have to choose what they put in. See the complete list of public packages here http://code.google.com/android/reference/packages.html See the complete list of

[android-developers] Re: How android can i work with MAP in android

2008-04-25 Thread vol
You'll need to create an overlay ( http://code.google.com/android/reference/com/google/android/maps/Overlay.html ) and display any points you wish to display on that. Then, in your MapView ( http://code.google.com/android/reference/com/google/android/maps/MapView.html ) use the OverlayController

[android-developers] Re: Error no space left on device

2008-04-25 Thread vol
Your device is probably out of space. If you start the emulator with the -wipe-data argument, it will wipe all user data from the device before starting. Please note that certain activities such as creating MediaPlayer resources via MediaPlayer.create and then failing to release them may cause

[android-developers] Re: Task Manager in Android

2008-04-25 Thread hackbod
On Apr 25, 1:04 am, AndreySerj [EMAIL PROTECTED] wrote: Thanks for your reply. I should specify my needs: I want to monitor exactly any running android-applications (installed .apks,  not -tasks-) from my own application so that one can hold and represent such information about theirs as:

[android-developers] how to access mobile web app on local network

2008-04-25 Thread WRM
In Android Emulator, when I try to type in the http path to the mobile web app I am developing on our INTRAnet here at work, I receive the following error: Network Error Unknown host. Question: How do configure Android Emulator so that I can view the mobile web app I am developing?

[android-developers] Re: ListActivity SelectedItem

2008-04-25 Thread Jason von Nieda
You can always get the currently selected item in the ListActivity with ListActivity.getSelectedItemPosition(). While preparing your options menu you could check the currently selected item and modify your menu as needed. On Apr 24, 5:17 pm, shaimailit [EMAIL PROTECTED] wrote: Hi, I guess it's

[android-developers] Mobile Special Report

2008-04-25 Thread cirion
Hi, Please forgive a brief plug: I've written a short article at DevX on Android development. It walks through a basic application that shows how to accomplish several tasks, such as taking a picture, saving it to disk, managing a database, and uploading data to the network. It may be too

[android-developers] Re: Setting EditText and Spinner at the same height level...

2008-04-25 Thread kingkung
Thank you for the response. I guess I'll just have to wait... On Apr 25, 4:58 pm, Romain Guy [EMAIL PROTECTED] wrote: This is because, by default, TableRow aligns widgets on their text baseline. It is more important to have the texts aligned than the actual object boundaries. However, next

[android-developers] DateInputMethod

2008-04-25 Thread shaimailit
Hi, Does DateInputMethod work correctly? I have set the xml attribute android:inputMethod=android.text.method.DateInputMethod. It does enable input of only specific characters (numeric and some special chars), but it does not check that the entire input is valid (as date). Best regards, Shai

[android-developers] Android Back Button

2008-04-25 Thread tenacious
How does the default browser that comes with the emulator capture the back button - and how does it capture the back button being held-down which displays the carousel view? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google