Back to project page 50AndroidHacks.
The source code is released under:
Apache License
If you think the Android project 50AndroidHacks 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.github.yftx.AndroidHacks.sectionTipsAndTricks; /* w w w . ja v a 2 s .c om*/ import android.app.Activity; import android.os.Bundle; import com.github.yftx.AndroidHacks.R; /** * User: Liuzl * Date: 13-11-28 */ public class NoBgPhoneWindow extends Activity { public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.no_bg_window); } }