我用
锁定了我的显示方向 this.setRequestedOrientation(
ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
在我的onCreate()
方法中,当然,工作正常。现在我想处理我的显示方向的变化。我想像在Android相机中实现的那样旋转我的ImageView。有任何想法吗?
非常感谢
答案 0 :(得分:0)
在您的清单中,您可以将此属性添加到您要检查的活动中:
<activity android:name=".MyActivity"
android:configChanges="orientation"
android:label="@string/app_name" />
您的活动代码只是覆盖此方法:
@Override
public void onConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
// Checks the orientation of the screen
if (newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE) {
Toast.makeText(this, "landscape", Toast.LENGTH_SHORT).show();
} else if (newConfig.orientation == Configuration.ORIENTATION_PORTRAIT){
Toast.makeText(this, "portrait", Toast.LENGTH_SHORT).show();
}
}
供参考:
http://developer.android.com/guide/topics/resources/runtime-changes.html