How to Make an Activity Fullscreen如何使得界面全屏

 

 

This code makes the current Activity Full-Screen. No Status-Bar or anything except the Activity-Window!

 

 

 

 

public class FullScreen extends Activity {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        requestWindowFeature(Window.FEATURE_NO_TITLE);
        getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, 
                                WindowManager.LayoutParams.FLAG_FULLSCREEN);

        setContentView(R.layout.main);
    }
}

 

你可能感兴趣的:(Activity)