android开发中常用到的设置

android开发中,需要注意到的基础设置,如下:

@Override
    public void onCreate(Bundle savedInstanceState) {
    	super.onCreate(savedInstanceState); 

        this.requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉标题
        getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);//去掉标头
        this.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);//强制横屏
        
        //获取分辨率
        DisplayMetrics dm=new DisplayMetrics();
        getWindowManager().getDefaultDisplay().getMetrics(dm);
        //给常量类中的屏幕高和宽赋值
        if(dm.widthPixels>dm.heightPixels)
        {
        	Constant.SCREEN_WIDTH=dm.widthPixels;
        	Constant.SCREEN_HEIGHT=dm.heightPixels;
        }else
        {
        	Constant.SCREEN_HEIGHT=dm.widthPixels;
        	Constant.SCREEN_WIDTH=dm.heightPixels;
        }
        
       
    }


你可能感兴趣的:(android开发中常用到的设置)