code

Android에서 앱 제목을 숨기는 방법은 무엇입니까?

codestyles 2020. 11. 16. 08:19
반응형

Android에서 앱 제목을 숨기는 방법은 무엇입니까?


앱 제목 표시 줄을 숨기고 싶습니다.


프로그래밍 방식으로 수행 할 수 있습니다.

import android.app.Activity;
import android.os.Bundle;
import android.view.Window;
import android.view.WindowManager;

public class ActivityName extends Activity {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        // remove title
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
            WindowManager.LayoutParams.FLAG_FULLSCREEN);
        setContentView(R.layout.main);
    }
}

또는 AndroidManifest.xml파일을 통해 수행 할 수 있습니다 .

<activity android:name=".ActivityName"
    android:label="@string/app_name"
    android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen">
</activity>

편집 : 원하는대로 전체 화면으로 표시 할 수 있도록 몇 줄을 추가했습니다.


사용하다

<activity android:name=".ActivityName" 
          android:theme="@android:style/Theme.NoTitleBar">

프로그래밍 방식으로 수행 할 수 있습니다. 또는 작업 표시 줄없이

//It's enough to remove the line
     requestWindowFeature(Window.FEATURE_NO_TITLE);

//But if you want to display  full screen (without action bar) write too

     getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
     WindowManager.LayoutParams.FLAG_FULLSCREEN);

     setContentView(R.layout.your_activity);

참고 URL : https://stackoverflow.com/questions/2862528/how-to-hide-app-title-in-android

반응형