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 [email protected]
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
-~----------~----~----~----~------~----~------~--~---