Back to project page Marble-Run.
The source code is released under:
Apache License
If you think the Android project Marble-Run 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 nttu.edu.handler; /*from w w w . j av a 2 s. co m*/ import nttu.edu.R; import android.app.Dialog; import android.content.Context; import android.view.Window; public class Loading extends Dialog { public Loading(Context context) { super(context); requestWindowFeature(Window.FEATURE_NO_TITLE); this.setContentView(R.layout.loading_dialog); } }