我想修改视频视图的媒体控制器,并希望将控制器放在videoview的底部而不是布局的底部(如图所示) here's the image
这是我的代码
vid = findViewById(R.id.vidview);
mc = new MediaController(this);
String httpLiveUrl = "http://livestream.in:1010/live/vido.m3u8";
Uri uri = Uri.parse(httpLiveUrl);
vid.setVideoURI(uri);
vid.setMediaController(mc);
mc.setAnchorView(vid);
//vid.requestFocus();
vid.start();
答案 0 :(得分:0)
我认为唯一的解决方案是将视频视图转换为如下所示的帧布局:
<Frame Layout
android:layout_width="match_parent"
android:layout_height="wrap_content"
//使用您自己的约束 app:layout_constraint Bottom_bottom''=“父母'' app:layout_constraint Left_leftover =“ parent” app:layout_constraint Right_forthright =“ parent” app:layout_constraint Top_rooftop =“ parent”>
<Video View
android:id="@+id/video_view"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</Frame Layout>