0
我正在開發一個應用程序,我想在啓動時播放一段短短5秒的視頻。這是最好的格式3gp,MPG或別的什麼?我產生了一個標題活動。我想在標題前播放視頻。請幫助!!!以下是我的標題活動的代碼。如何在應用程序開始時播放mpg/3gp 5秒視頻?
public class Title extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.title);
setTitle("M.I.S.T");
this.setTitleColor(Color.BLUE);
View title = getWindow().findViewById(android.R.id.title);
View titleBar = (View) title.getParent();
titleBar.setBackgroundColor(Color.YELLOW);
Thread timer = new Thread(){
public void run(){
try{
sleep(3000);
}catch (InterruptedException e){
e.printStackTrace();
}finally{
Intent open= new Intent("com.congestion6.asad.MENU");
startActivity(open);
}
}
};
timer.start();
}
protected void onPause() {
// TODO Auto-generated method stub
super.onPause();
finish();
}
}
使用視頻視圖播放視頻.....並在視頻結束時調用新活動的意圖。 –
感謝您的回覆!我是否還需要對佈局進行任何更改?也告訴我可以播放MPG視頻嗎? –
據我所知,我認爲不可能。使用其他格式。 –