0

我正在开发一个应用程序,我想在启动时播放一个短 5 秒的视频。最好的格式是 3gp、mpg 还是其他格式?我已经生成了一个标题活动。我想在标题之前播放视频。请帮忙!!!以下是我的标题活动的代码。

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();
    }
}
4

1 回答 1

0

mpeg可以在一系列不同的格式/算法/编解码器上压缩视频,有些受支持,有些则不支持。3gp 只是其中之一,它受到支持(尽管格式很差)。

尝试自己编码视频,您会看到所有不同的选项。通常H264上的mp4可以在手机上完美运行。

于 2012-10-27T04:54:31.677 回答