我有一个 MediaController,我希望它位于屏幕右上角,我使用方法 SetAnchorView() 遵循 我的布局
<RelativeLayout
android:id="@+id/content_media"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<VideoView
android:id="@+id/audio_play"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_alignParentRight="true"
/>
</RelativeLayout>
和 MyMediaController
VideoView video = (VideoView) findViewById(R.id.audio_play);
MediaController mc = new MediaController(this);
mc.setMediaPlayer(this);
mc.setAnchorView(video);
但是我的 MediaController 已显示在顶部中心屏幕上。请帮助我。谢谢!