0
私はimageview_のビットマップクラスを使用します。ビデオマップの代わりにビットマップのクラスを知りたいですか?ビデオビューのビットマップクラス
私はimageview_のビットマップクラスを使用します。ビデオマップの代わりにビットマップのクラスを知りたいですか?ビデオビューのビットマップクラス
** VideoViewの例**
MainActivity.java
private VideoView videoView;
private Button videoPlay;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
videoView = (VideoView)findViewById(R.id.VideoView);
videoPlay=(Button)findViewById(R.id.button);
videoPlay.setOnClickListener(this);
}
@Override
public void onClick(View v) {
if(v==videoPlay){
videoView.setVideoPath("/sdcard/blonde_secretary.3gp");
videoView.start();
}
}
main.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.videotest.MainActivity">
<VideoView
android:id="@+id/videoview"
android:layout_width="300dp"
android:layout_height="200dp"/>
<Button
android:text="Play"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/videoview"
android:onClick="onButtonClick"
android:id="@+id/button"/>
</RelativeLayout>
あなたがコード内で何をしようとしたかを表示してください。もしこの質問が閉じられると思われたら – nachokk
私はListview'itemの多くのアクティビティではなくアクティビティで作成したい –
imageview_whatビットマップの代わりにビデオビューのクラス –