본문 바로가기

카테고리 없음

Android Game example, Full Screen

안드로이드 게임 화면에서 제목(타이틀바)과 알림바(안테나 표시된 부분)를 제거하고 풀 스크린으로 설정하는 코드

Activity

package game.framework;


import android.app.Activity;

import android.graphics.Rect;

import android.os.Bundle;

import android.util.Log;

import android.view.Window;

import android.view.WindowManager;


public class GameActivity extends Activity {

    @Override

    public void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);

        

        //full screen 설정

        requestWindowFeature(Window.FEATURE_NO_TITLE);

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

        WindowManager.LayoutParams.FLAG_FULLSCREEN);

        

        setContentView(new GameView(this));

    }

}