📜  Android隐藏标题栏和全屏示例

📅  最后修改于: 2020-09-28 09:26:37             🧑  作者: Mango

Android隐藏标题栏和全屏示例

在此示例中,我们将说明如何隐藏标题栏以及如何以全屏模式显示内容。

必须调用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隐藏标题栏和全屏示例

让我们看完整的代码以在android中隐藏标题栏。

activity_main.xml




    


活动课

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);


    }
}

输出:仅隐藏标题

输出:隐藏TitleBar并启用全屏