onecoders / NetEase

NetEase Example
6 stars 6 forks source link

Android Full Screen #80

Open onecoders opened 10 years ago

onecoders commented 10 years ago
protected void onCreate(Bundle savedInstanceState) {  
        super.onCreate(savedInstanceState);  
        this.requestWindowFeature(Window.FEATURE_NO_TITLE);  
        this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);  
        setContentView(R.layout.activity_main);  
}  
onecoders commented 10 years ago

or in AndroidManifest.xml

android:theme="@android:style/Theme.NoTitleBar"  
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"