アクティビティに再生ボタンとビデオビューがあります。xml で、ボタンを非表示にしました。Javaコードでは、それを見えるようにしようとしています。
ビデオビューのOnPreparedListener
方法で、私はそれを見えるようにしようとしています。しかし、それは目に見えません。以下は私のコードです。
vvVideos.setOnPreparedListener(new OnPreparedListener() {
public void onPrepared(MediaPlayer mp) {
btnPlay.setVisibility(Button.VISIBLE);
}
});
XML ファイル ::
<RelativeLayout
android:id="@+id/bottomll"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true">
<VideoView
android:id="@+id/videoView"
android:layout_width="fill_parent"
android:layout_height="150dp"/>
<Button
android:id="@+id/btnPlay"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:background="@drawable/play"
android:visibility="gone"/>
</RelativeLayout>