[android-developers] Re: scroll

2008-06-21 Thread Romain Guy
onTouchEvent() is all you need to implement scrolling. That's how we implemented scrolling in ListView and ScrollView. The "scroll" even is a MotionEvent with the action ACTION_MOVE. On Sat, Jun 21, 2008 at 3:48 PM, Jeremy Villalobos <[EMAIL PROTECTED]> wrote: > How do you catch a scroll event ?

[android-developers] Re: read XML from httpConnection

2008-06-21 Thread Joa
Code I am using, working just fine: - snip -- SAXParserFactory parserFactory = SAXParserFactory.newInstance(); SAXParser parser = parserFactory.newSAXParser(); MyParseHandler handler = new MyParseHandler();

[android-developers] Conversion help !!

2008-06-21 Thread zsimplicityz
Hey guys .. Would like to check if my conversion from m3 to m5 is correct . This is what i've modified in to the m5 version . Please advice if there's any syntax missing from here . Thanks . http://schemas.android.com/apk/res/android"; package="org.anddev.android.friendfinder">

[android-developers] using Apache XmlBeans in an Android application

2008-06-21 Thread Sean Sullivan
I'm writing an Android application that invokes a REST XML service. I'd like to use Apache XmlBeans in my application. Has anybody successfully used XmlBeans in an Android app? Sean --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

[android-developers] read XML from httpConnection

2008-06-21 Thread Deyan Peev
Hi everyone, i need Your help: i need to read a XML output from server (who needs username and password for access) in my android app. I've made HttpConnection (post to the server was no problem..) to connect the server and authenticate. Then i read the HttpResponse - it looks like this: p

[android-developers] external hardware in ANDROID

2008-06-21 Thread ann
Is it possible to connect external electronics hardware and install signal processing software in the ANDROID? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send e

[android-developers] How do we host an Android application?

2008-06-21 Thread Prem
Hi, I had finished my POC on Android by using eclipse . I want to host this application so that my client will access this application. Guide me how to do this. Also I want to mention domain name of my application and give the url to client to access my application. Basically how should I deploy t

[android-developers] scroll

2008-06-21 Thread Jeremy Villalobos
How do you catch a scroll event ? like a mouse-drag in other window frameworks I've being looking into this for hours and cannot figure it out. I got onTouchEvent to work, but it is not good enought to do scrolling with it I am inheriting View class to create a custom control. thanks for any hel

[android-developers] Re: Null Pointer Exception

2008-06-21 Thread Nishant Suresh
Hey Mark, I'm posting the log here... DEBUG/ActivityThread(1228): Performing launch of ActivityRecord{400bb518 [EMAIL PROTECTED]/com.android.hello.HelloAndroid}} INFO/jdwp(1244): prepping for JDWP over ADB INFO/jdwp(1244): PID sent as '04dc' to ADB INFO/jdwp(1244): trying to receive file descript

[android-developers] Re: Null Pointer Exception

2008-06-21 Thread Zach Hobbs
Just a tip on NullPointerExceptions: if you are using eclipse in debug mode there is a pane for your Breakpoints. In this pane there is a button that looks like "J!" and it will let you add an exception to your breakpoint list. This will cause your app to pause whenever this exception is thr

[android-developers] Re: Null Pointer Exception

2008-06-21 Thread Mark Murphy
redhatab wrote: > Hi, > > Am a total beginner and I was trying out to extrapolate on the Hello > Android code, but I've sort of hit a road block with a null pointer > exception. The code is as below: > > public class HelloAndroid extends Activity > { > @Override > public void o

[android-developers] Null Pointer Exception

2008-06-21 Thread redhatab
Hi, Am a total beginner and I was trying out to extrapolate on the Hello Android code, but I've sort of hit a road block with a null pointer exception. The code is as below: public class HelloAndroid extends Activity { @Override public void onCreate(Bundle icicle)