Android判断横屏竖屏代码

// 判断Android当前的屏幕是横屏还是竖屏。横竖屏判断
		if (this.getResources().getConfiguration().orientation == Configuration.ORIENTATION_PORTRAIT) {
			//竖屏
		} else {
			//横屏
		}


this指针是当前Activity或者Context。

你可能感兴趣的:(android)