5
我有一個的MediaController,我想這是在右上角的屏幕位置,我使用方法SetAnchorView()如下 我的佈局位置的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已顯示在頂部中央屏幕上。請幫助我。謝謝!
但我想設置控制器的邊緣與屏幕,我不知道如何設置它,我的Videoview顯示在右上方的屏幕,但我的mediacontroller不顯示打印在VideoView下方,顯示在中心:D – user1797447
已編輯 - 嘗試新代碼 – Slartibartfast
我可以有你的電子郵件地址嗎?,我會給你我的應用程序,幫我修復它,謝謝你:D – user1797447