Back to project page videoMerge.
The source code is released under:
Apache License
If you think the Android project videoMerge listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.dragonplayer.merge; // w w w . j a v a 2 s . c o m import android.app.Dialog; import android.content.Context; import android.os.Bundle; import android.view.Window; public final class LoadingDialog extends Dialog { public LoadingDialog(Context context) { super(context); // TODO Auto-generated constructor stub } @Override public void onCreate( Bundle $savedInstanceState ) { super.onCreate( $savedInstanceState ) ; requestWindowFeature(Window.FEATURE_NO_TITLE); setContentView( R.layout.loadingdlg ) ; } }