[android-developers] Re: how to save a streaming into SD card?

2010-10-09 Thread 097
I'm afraid you can't at app level.

On Oct 9, 12:02 pm, Charlie88 charliel...@gmail.com wrote:
 hi cindy,

 Do you know how can I save a streaming video from the position the
 MediaPlayer is currently playing?
 Because since the streaming is already playing, I assume all the
 connection is fine. Can I use some shortcut commands to save the
 current playing streaming video? Thanks.

 Charlie

 On Oct 9, 11:53 am, cindy ypu01...@yahoo.com wrote:

  you can open a file, and write the content to file.

  On Oct 8, 8:42 pm, Charlie88 charliel...@gmail.com wrote:

   Anyone know the mechanism of saving streaming in Android? Is it
   related to the network condition? And how should I specify the path of
   the file in SD card in my saving command? Thanks.- Hide quoted text -

  - Show quoted text -

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: WebView class from android supports xhtml, html4, html5 ?

2010-10-09 Thread 097
As I know, WebView (1.6 or above) supports XHTML and html4.
If you merely want to display text mixed with images, you can write a
html4 page.
Hope it will help you.

:-D

On Oct 8, 11:09 pm, Lidia lidyp...@yahoo.com wrote:
 Hello,

 Does anyone know if the WebView class from android supports xhtml,
 html4, html5 for all platforms (from 1.5 to 2.2)?

 I need to use an internal browser in my app from which to open a
 sample page that contains some images.
 What is the best way to develop this pages, to make compatibbble for
 all phones?
 Has onyone idea?

 Thank you
 Lidia

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: How to Add Objects to Sqlite Database

2009-11-18 Thread 097
See details in the docs under SDK_DIR/docs/guide/topics/data/data-
storage.html and I think you'll find the answer

You should implement SQLiteDatabase.CursorFactory interface, and
create an SQLiteDatabase instance by calling the static method
SQLiteDatabase.openOrCreateDatabase.
Details info of SQLiteDatabase.CursorFactory is in SDK_DIR/docs/
reference/android/database/sqlite/SQLiteDatabase.CursorFactory.html

On Nov 18, 2:06 pm, naveenballa naveenball...@gmail.com wrote:
 i have a class like
 class Mydata{
 String name;
 int data;
 Location[] locarray;

 }

 ListMydata = new ArrayListMydata( );

 can anyone tell me how to add the object of Mydata class to Sqlite
 Database column

 Thanks in advance

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en