[android-developers] Re: working WebView example?

2012-12-10 Thread Ben Rosenberg
lol well, i did figure it out four years ago

On Mon, Dec 10, 2012 at 10:15 AM, Roney Kakkanatt itechn...@gmail.comwrote:

 To learn how to make a simple WebView Application

 http:/
 www.androidituts.blogspot.com/2012/12/android-tutorial-sample-webview.html

 For more tutorials

 Visit:www.androidituts.blogspot.com


-- 
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] adding text/textview to MediaController?

2009-01-09 Thread ben rosenberg

greetings,

presently I am using a VideoView to play some video, with a
MediaController to control the playback of said video. I would like to
have some text (containing a description of the video being played)
that is shown/hidden along with the mediacontroller controls..

so far, this is what I have:

VideoView vv=(VideoView)findViewById(R.id.surface_view);
TextView mptx = new TextView(this);
mptx.setText(sample text);
MediaController nc = new MediaController(this);
nc.addView(mptx);
vv.setMediaController(nc);


.. the VideoView and the MediaController work, but I'm not getting the
text..  am I approaching this wrong?


--~--~-~--~~~---~--~~
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 install the 'Radar' package to the android platform?

2008-12-14 Thread ben rosenberg

Radar can be downloaded from the Android Market.

On Dec 13, 6:39 pm, ying...@gmail.com ying...@gmail.com wrote:
 Hi,

 How to install the 'Radar' package to the android platform?
 When I run an application it said 'Please install Radar package'

 Thank you.
--~--~-~--~~~---~--~~
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: MediaPlayer and onSaveInstanceState?

2008-12-12 Thread ben rosenberg

I'm afraid I may have oversimplified, it would appear I have two
different issues that need to be addressed..

as regards the media player, I am mostly interested in maintaining
playback across orientation changes.. losing the mediaplayer state on
release of focus is not a problem (and indeed, i should probably look
into coding that part first, as I think I understand how to do at
least that portion of it).

as for the HttpClient, I'm using it to login and establish a session
with a site that then returns the url for the mediaplayer to load;
ideally I would like to preserve this session across both orientation
changes and app exit/entry events (I'm beginning to understand that
these are effectively the same thing...  I think?).

so, those things being said, I'm afraid I don't yet understand any of
the suggestions made here, and would greatly appreciate any greater
detail (or examples!) that could be provided.

thanks again,

-br

On Dec 8, 7:01 pm, Dave Sparks davidspa...@android.com wrote:
 The HTTP session isn't controlled by the Java application, the media
 framework has its own HTTP client.

 The Java proxy object for the network session is the MediaPlayer
 object which is owned by VideoView. You could retain a reference to
 the VideoView object across the orientation change, so that it keeps
 its internal MediaPlayer reference. You need to be careful because
 holding on to a MediaPlayer object can have significant implications
 on battery life, so you want to make sure you release it if your
 activity no longer has the focus.

 Unfortunately, the current VideoView design doesn't work well for
 restoring state because it starts playing immediately after setVideoURI
 ().

 On Dec 7, 12:59 am, ben rosenberg ben.rosenb...@gmail.com wrote:

  hey folks,

  to make a long story short, I'm working on an app that plays streaming
  video content in a VideoView with aMediaController; Im wondering how
  I can preserve the state of my VideoView across orientation changes,
  such that opening the keyboard doesn't restart the playback, etc..

  I've been messing around with onSaveInstanceState, but Im fairly
  certain I'm missing something (possibly Parcelized objects?) ..
  Ideally i think I'd like to save and restore the state of the
  MediaPlayer,  as well as an HttpClient (or at least its cookiejar) ...
  I suspect this will have to be done with Parcelables, but I don't
  quite have my head around how those work (and the Notepad example
  hasn't helped)..

  any suggestions, or especially code or pseudocode examples, would be
  greatly apprectiated
--~--~-~--~~~---~--~~
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: MediaPlayer and onSaveInstanceState?

2008-12-08 Thread ben rosenberg

bump


--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] MediaPlayer and onSaveInstanceState?

2008-12-07 Thread ben rosenberg

hey folks,

to make a long story short, I'm working on an app that plays streaming
video content in a VideoView with a MediaController; Im wondering how
I can preserve the state of my VideoView across orientation changes,
such that opening the keyboard doesn't restart the playback, etc..

I've been messing around with onSaveInstanceState, but Im fairly
certain I'm missing something (possibly Parcelized objects?) ..
Ideally i think I'd like to save and restore the state of the
MediaPlayer,  as well as an HttpClient (or at least its cookiejar) ...
I suspect this will have to be done with Parcelables, but I don't
quite have my head around how those work (and the Notepad example
hasn't helped)..

any suggestions, or especially code or pseudocode examples, would be
greatly apprectiated


--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---