原文出处: 点击打开链接
requestWindowFeature(Window.FEATURE_NO_TITLE);//隐藏标题 getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);//设置全屏
@Override protected void onResume() { /** * 设置为横屏 */ if(getRequestedOrientation()!=ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE){ setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE); } super.onResume(); }
android:launchMode="singleTask" android:screenOrientation="portrait">
@Override
public void onConfigurationChanged(Configuration newConfig) {
// TODO Auto-generated method stub
super.onConfigurationChanged(newConfig);
Log.v(" == onConfigurationChanged");
processLayout();
}
android:configChanges="orientation|keyboardHidden"
android:label="@string/app_name">
@Override
public void onConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
if (this.getResources().getConfiguration().orientation == Configuration.ORIENTATION_LANDSCAPE) {
//land
} else if (this.getResources().getConfiguration().orientation == Configuration.ORIENTATION_PORTRAIT) {
//port
}
}
android:screenOrientation=["unspecified" | "user" | "behind" |screenOrientation 用来指定Activity的在设备上显示的方向,每个值代表如下含义:
"landscape" | "portrait" |
"sensor" | "nonsensor"]
"unspecified " |
默认值 由系统来判断显示方向.判定的策略是和设备相关的,所以不同的设备会有不同的显示方向. |
"landscape " |
横屏显示(宽比高要长) |
"portrait " |
竖屏显示(高比宽要长) |
"user " |
用户当前首选的方向 |
"behind " |
和该Activity下面的那个Activity的方向一致(在Activity堆栈中的) |
"sensor " |
有物理的感应器来决定。如果用户旋转设备这屏幕会横竖屏切换。 |
"nosensor " |
忽略物理感应器,这样就不会随着用户旋转设备而更改了 ( "unspecified "设置除外 )。 |
ps:发现强制横屏,可以不用设置 AndroidManifest里面的activity,直接在onCreate代码里设置一行代码 :
@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); //btn_test = (Button) findViewById(R.id.btn_test); //btn_test2 = (Button) findViewById(R.id.btn_test2); //btn_test.setOnClickListener(this); //btn_test2.setOnClickListener(this); setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE); }
当然如果不是强制横屏或竖屏,而是横竖屏切换,并想做一些操作的话,可以:
android:name=".MainActivity"
android:screenOrientation="sensor"
android:configChanges="orientation|keyboardHidden"
>
android:name="android.intent.action.MAIN" />
android:name="android.intent.category.LAUNCHER" />
@Override public void setContentView(@LayoutRes int layoutResID) { super.setContentView(layoutResID); if (this.getResources().getConfiguration().orientation== Configuration.ORIENTATION_LANDSCAPE) { Log.i("myTag", "屏幕 横屏"); }else if(this.getResources().getConfiguration().orientation==Configuration.ORIENTATION_PORTRAIT) { Log.i("myTag", "屏幕 竖屏"); } }如果AndroidManifest的activity内加入的横竖屏代码是:
android:configChanges="orientation|keyboardHidden|screenSize"含有"screenSize",那说明横竖屏切换的时候,activity不会重新创建绘制,此时的setContentView是不会执行的,此时要检测横竖屏的切换,
只能重写方法 onConfigurationChanged :
@Override public void onConfigurationChanged(Configuration newConfig) { super.onConfigurationChanged(newConfig); if (this.getResources().getConfiguration().orientation== Configuration.ORIENTATION_LANDSCAPE) { Log.i("myTag", "onConfigurationChanged 屏幕 横屏"); }else if(this.getResources().getConfiguration().orientation==Configuration.ORIENTATION_PORTRAIT) { Log.i("myTag", "onConfigurationChanged 屏幕 竖屏"); } }当然前者没有"screenSize"配置的也可以用 onConfigurationChanged 方法检测,看个人习惯.