YNT: Re: [android-developers] Re: android e book

2012-11-29 Thread gunduz.salih
I decide to use jsoup and record data to sql lite ataşe Samsung Mobile tarafından gönderildiKristopher Micinski krismicin...@gmail.com yazdı:So use any HTML parser to read it, rather than an XML or JSON parser. kris On Mon, Nov 26, 2012 at 6:40 PM, Salih Gündüz gunduz.sa...@gmail.com wrote:

Re: [android-developers] Re: android e book

2012-11-28 Thread Salih Gündüz
thanks mario. but I can not reach any xml or database. It is a government page. I can only read html. On Tue, Nov 27, 2012 at 1:27 AM, Mário César Mancinelli de Araújo mandaproma...@gmail.com wrote: Maybe you won't need any of this. But, first, questions: - The data you want is only in that

Re: [android-developers] Re: android e book

2012-11-28 Thread Salih Gündüz
http://www.mevzuat.adalet.gov.tr/html/388.html On Tue, Nov 27, 2012 at 1:39 AM, Salih Gündüz gunduz.sa...@gmail.comwrote: thanks mario. but I can not reach any xml or database. It is a government page. I can only read html. On Tue, Nov 27, 2012 at 1:27 AM, Mário César Mancinelli de Araújo

Re: [android-developers] Re: android e book

2012-11-28 Thread Kristopher Micinski
So use any HTML parser to read it, rather than an XML or JSON parser. kris On Mon, Nov 26, 2012 at 6:40 PM, Salih Gündüz gunduz.sa...@gmail.comwrote: http://www.mevzuat.adalet.gov.tr/html/388.html On Tue, Nov 27, 2012 at 1:39 AM, Salih Gündüz gunduz.sa...@gmail.comwrote: thanks mario.

[android-developers] Re: android e book

2012-11-26 Thread bob
Sounds like you will want to use a WebView. On Monday, November 26, 2012 10:09:30 AM UTC-6, Salih Gündüz wrote: I want to develope an e book for android. My data is in internet but not a json or a xml only html page.( http://www.mevzuat.adalet.gov.tr/html/388.html). the data changes

[android-developers] Re: android e book

2012-11-26 Thread Salih Gündüz
İt can be used. but I want to store the data in phone so they can read when they dont have internet.this is my problem :) 26 Kasım 2012 Pazartesi 18:28:11 UTC+2 tarihinde bob yazdı: Sounds like you will want to use a WebView. On Monday, November 26, 2012 10:09:30 AM UTC-6, Salih Gündüz

Re: [android-developers] Re: android e book

2012-11-26 Thread Michael Banzon
You must include a caching layer in your app. Everything you need to do this can be found in the SDK manual on WebViews: http://developer.android.com/guide/webapps/webview.html On Mon, Nov 26, 2012 at 5:31 PM, Salih Gündüz gunduz.sa...@gmail.comwrote: İt can be used. but I want to store the

Re: [android-developers] Re: android e book

2012-11-26 Thread Salih Gündüz
webview is a good solution thanks. But the web page is not good formatted for mobile devices.It is a government page so I can not reach the database but I and to develope my own user interface. On Mon, Nov 26, 2012 at 7:03 PM, Michael Banzon mich...@banzon.dk wrote: You must include a caching

Re: [android-developers] Re: android e book

2012-11-26 Thread Mário César Mancinelli de Araújo
Maybe you won't need any of this. But, first, questions: - The data you want is only in that HTML page? If so, how is it formated? - Or is it in a database? If this is the case, can't you access directly the db? Anyway, you can access it with xml, or directly the database. And it isn't so hard to