[android-developers] Re: Accessing email

2009-01-11 Thread Casey Link
On Thu, Dec 11, 2008 at 7:50 AM, Nathan Ekstrom nat...@whiteboxdev.com wrote: I'm writing an application that provides status information. The status updates come through email so I need to get the status emails and parse them to figure out what the current status is. Hello, Did you ever

[android-developers] Re: Scrolling with Multiple ListViews

2008-11-20 Thread Casey Link
the Settings app. See: http://www.jsharkey.org/blog/2008/08/18/separating-lists-with-headers-in-android-09/ Casey Link --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group

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

2008-11-19 Thread Casey Link
This isn't how a public forum for developer communication works. You post a specific problem, demonstrate the solutions you have tried, then ask for help. If you want something done entirely for you, put out an advertisement to hire someone that will work for money. Also, I suggest googling

[android-developers] Re: Parcelable Types in external projects.

2008-10-30 Thread Casey Link
Just for posterity here's a link to a solution of the problem. http://code.google.com/p/android/issues/detail?id=1121 Casey On Sun, Oct 26, 2008 at 9:56 PM, Casey Link [EMAIL PROTECTED] wrote: Hello, In my service interface I am trying to pass several custom types via the Parcelable api

[android-developers] Re: Fastest Combination of Http Post/Get and XML parsing libs

2008-10-27 Thread Casey Link
On Mon, Oct 27, 2008 at 6:01 AM, Guillaume Perrot [EMAIL PROTECTED] wrote: According to me, the fastest combo is to use HttpClient + SAX. SAX: encouraged by the android team, they discourage the use of XmlPullParser unless we import KXml in our source tree and use this implementation. Why

[android-developers] Re: Fastest Combination of Http Post/Get and XML parsing libs

2008-10-27 Thread Casey Link
On Mon, Oct 27, 2008 at 5:57 PM, Hong [EMAIL PROTECTED] wrote: you can use DocumentBuilder from DocumentBuilderFactory to access DOM :) Yes, but parsing xml via the DOM is slow and hogs memory, and avoiding that is the point of this thread.

[android-developers] Paging a ListView

2008-10-25 Thread Casey Link
Hello, I've implemented a ListView with a custom ArrayAdapter and View type. That works fine, however now I would like to page the listview. That is, if my array has n items in it, I only want to show x items number, where x n. Ideally, as the user scrolls the ListView items will appear and

[android-developers] Fastest Combination of Http Post/Get and XML parsing libs

2008-10-25 Thread Casey Link
bottleneck seems to be the DOM parsing routines. Is there a recommended/preferred/faster way of making POST/GET requests, and parsing XML in the android? Casey Link --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups