[android-beginners] Re: Network connections in android

2008-04-10 Thread Dan U.
That wasn't quite what I was expecting. I'm not sure what you would use for rmi. I thought you were talking about connections to something like a webserver. On Apr 9, 11:30 pm, "Analdin Judy" <[EMAIL PROTECTED]> wrote: > In java we use > > import java.rmi.Remote; > import java.rmi.RemoteException

[android-beginners] eclipse android plugins's error

2008-04-10 Thread carrol
I have install the android's plugins,and face the problem: Unable to create the selected preference page. Reason: Plugin com.google.android.adt was unable to load the class com.google.android.adt.preferences.AndroidPreferencePage. and I also see my JDK version, it is JDK6... when I run eclipse

[android-beginners] Re: Network connections in android

2008-04-10 Thread Analdin Judy
Is there any example in android document --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Beginners" group. To post to this group, send email to android-beginners@googlegroups.com To unsubscribe from this group

[android-beginners] Re: Is there a way to preserve a Bitmap in an icicle?

2008-04-10 Thread Raul Bocter
As Bitmap implements Parceable, try to use put(String, Parceable) regards, Raul On Thu, Apr 10, 2008 at 6:57 AM, J2MEJediMaster <[EMAIL PROTECTED]> wrote: > > I've got a basic sketch program working and I want to be able to > preserve the screen's contents, which are in a Bitmap that the pro

[android-beginners] Re: How to install Android on my PDA

2008-04-10 Thread tim jones
On Thu, Apr 10, 2008 at 1:47 AM, wamoc <[EMAIL PROTECTED]> wrote: > > Android is meant for cell phones, not PDAs. It also is not released > yet and the manufacturer will have to put it on the phone (in most > cases), you probably can't change your cell phone OS very easily on > your own without kn

[android-beginners] Re: How to install Android on my PDA

2008-04-10 Thread consoleart
thnx for the reply...and apologies for my ignorance tim jones wrote: > On Thu, Apr 10, 2008 at 1:47 AM, wamoc <[EMAIL PROTECTED]> wrote: > >> Android is meant for cell phones, not PDAs. It also is not released >> yet and the manufacturer will have to put it on the phone (in most >> cases), you

[android-beginners] Re: Problem with socket connection to emulator console

2008-04-10 Thread [EMAIL PROTECTED]
I didn't say it, but yes I already have the emulator running before I run the connection test. I haven't installed any Activity/Service yet for handling the SMS message, but since the emulator is running, I would expect the socket connection to be made. --Ken On Apr 9, 10:43 pm, "John P." <[EMAI

[android-beginners] Re: Possible to create 2 ListViews side by side?

2008-04-10 Thread Pepel
And how you can create such comonent??? regards, On 4/1/08, Axel M. Garcia <[EMAIL PROTECTED]> wrote: > > > Why to have two listViews? > If I can suggest, I think this way is simpler: > you can try to do it by creating a component composed by the item + > the button or whatever, and then add

[android-beginners] Re: Possible to create 2 ListViews side by side?

2008-04-10 Thread Pepel
And how you can create such component? On 4/10/08, Pepel <[EMAIL PROTECTED]> wrote: > > And how you can create such comonent??? > > regards, > > > On 4/1/08, Axel M. Garcia <[EMAIL PROTECTED]> wrote: > > > > > > Why to have two listViews? > > If I can suggest, I think this way is simpler: > > yo

[android-beginners] Re: Problem with socket connection to emulator console

2008-04-10 Thread Digit
what about making the connection manually to see if the console is responding ? (yes, you can have several clients connected simultaneously to the same console) you're running your Java program example on OS X, not the emulator, right ? On Thu, Apr 10, 2008 at 1:28 PM, [EMAIL PROTECTED] <[EMAIL P

[android-beginners] Re: Problem with socket connection to emulator console

2008-04-10 Thread [EMAIL PROTECTED]
Well, ok, some slightly odd behavior (should have checked this first): $ telnet localhost 5554 Trying ::1... telnet: connect to address ::1: Connection refused Trying ::1... telnet: connect to address ::1: Connection refused Trying 127.0.0.1... Connected to localhost. Escape character is '^]'. An

[android-beginners] Re: Problem with socket connection to emulator console

2008-04-10 Thread Digit
it's because "localhost" is resolved to several addresses, i.e. "::1" is the IPv6 equivalent of 127.0.0.1 the emulator only listens on 127.0.0.1 (IPv4-only address). try "telnet 127.0.0.1 5554" instead then On Thu, Apr 10, 2008 at 3:24 PM, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Well, o

[android-beginners] Re: Problem with socket connection to emulator console

2008-04-10 Thread [EMAIL PROTECTED]
Yes, I realized that after the last post. Revising the test to replace the lh= ... line by lh = InetAddress.getByName("localhost"); produced an immediate connection. Sorry for the thrashing, Many thanks, Ken Bowen On Apr 10, 9:44 am, Digit <[EMAIL PROTECTED]> wrote: > it's because "localhost"

[android-beginners] Re: ListActivity with image and text

2008-04-10 Thread Pepel
how did you resolve the issue? thanks, On 4/4/08, mobi <[EMAIL PROTECTED]> wrote: > > > Oh nevermind...figured it out..%-/ > > > On Apr 4, 2:48 pm, mobi <[EMAIL PROTECTED]> wrote: > > Hi, > > > > I've been trying to create a list with image and text for each > > listitem. > > I've tried creatin

[android-beginners] extending android.app.Application

2008-04-10 Thread WildLuka
Dear All, can you tell me how to go about extending android.app.Application, as I need some global data access and what to write in the AndroidManifest.xml ? your help will be appreciated many thanks in advance. Luka ps ... is it my impression or android docs just fail to tell you what you re

[android-beginners] Re: How to install Android on my PDA

2008-04-10 Thread tim jones
These newer phones are really noting, but PDAs with a different kind of "WiFi" They are using 900/1800/x frequencies instead of WiFi's 2.4 Ghz On Thu, Apr 10, 2008 at 3:43 AM, consoleart <[EMAIL PROTECTED]> wrote: > > thnx for the reply...and apologies for my ignorance > > tim jones wrote:

[android-beginners] How to Create a Context

2008-04-10 Thread Ray
Hi Everyone, I'm trying to write a little app that passes information from one program running on the android framework to another. I figure the way to do this is to make an intent and bundle up the data I want into the Intent and broadcast it out with this: http://code.google.com/android/refere

[android-beginners] Notepad exercise1 - error on import line com.google.provider

2008-04-10 Thread navdev
Hi, I have these simple error in Notepad exercise example. I guess my issues are Eclipse setup or so. I am using Windows XP and Eclipse. please help import com.google.provider.NotePad; // import com.google.provider.NotePad cannot be resolved . . . . Cursor c = mDbHelper.fetchAllNotes(); /

[android-beginners] Re: How to Create a Context

2008-04-10 Thread Megha Joshi
Hi Ray, The Activity and Service classes are subclasses of Context. So you can refer to the Context object by using the "this" object reference in OnCreate() method of you Activity or Service. Also, you would use broadcastIntent() if you want an IntentReceiver in the other application to receive t

[android-beginners] Unpleasant interaction between timer and updating a map overlay

2008-04-10 Thread [EMAIL PROTECTED]
Hi All, One of the methods in my Android App is named locationSubmit(). It: -- obtains gps coords, -- sends the coords to a (Tomcat) server with a web services call, -- receives back a collection of points in the return from the server, -- plots these points on a map, with a recentering o

[android-beginners] About com.google.android.gtalkservice.

2008-04-10 Thread Analdin Judy
Hi I got error in import com.google.android.gtalkservice; Can anybody please tell me what is the wrong in the coding? Thanks judy --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Beginners" group. To p

[android-beginners] About accessing webpage

2008-04-10 Thread Analdin Judy
Hi, Can anybody please tell me ,can we access a webpage from android ,If yes means, What is the code we have to use it? Thanks judy --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Beginners" gro