📅  最后修改于: 2020-09-28 09:26:37             🧑  作者: Mango
在此示例中,我们将说明如何隐藏标题栏以及如何以全屏模式显示内容。
必须调用Activity的requestWindowFeature(Window.FEATURE_NO_TITLE)方法来隐藏标题。但是,必须在setContentView方法之前对其进行编码。
getSupportActionBar()方法用于检索ActionBar类的实例。调用ActionBar类的hide()方法将隐藏标题栏。
requestWindowFeature(Window.FEATURE_NO_TITLE);//will hide the title
getSupportActionBar().hide(); //hide the title bar
Window类的setFlags()方法用于以全屏模式显示内容。您需要在setFlags方法中传递WindowManager.LayoutParams.FLAG_FULLSCREEN常量。
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN); //show the activity in full screen
让我们看完整的代码以在android中隐藏标题栏。
package first.javatpoint.com.hidetitlebar;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.Window;
import android.view.WindowManager;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE); //will hide the title
getSupportActionBar().hide(); // hide the title bar
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN); //enable full screen
setContentView(R.layout.activity_main);
}
}