본문 바로가기

코드조각모음

[android010] 전체화면 예제

import android.app.*;
import android.os.*;
import android.view.*;

public class FullScreenTest extends Activity
{
    @Override
    public void onCreate(Bundle savedInstanceState)
    {
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        getWindow().setFlags(
                WindowManager.LayoutParams.FLAG_FULLSCREEN,
                WindowManager.LayoutParams.FLAG_FULLSCREEN);
        super.onCreate(savedInstanceState);
    }
}