Android 用程序改变屏幕垂直或水平
2010-05-31 14:44:00 来源:WEB开发网核心提示:android.view.IWindowManager windowService = android.view.IWindowManager.Stub.asInterface(android.os.ServiceManager.getService(”window”));try{if (windowService.g
android.view.IWindowManager windowService = android.view.IWindowManager.Stub.asInterface(android.os.ServiceManager.getService(”window”));
try
{
if (windowService.getOrientation() == 0) //Orientation vertical
{
windowService.setOrientation(1); //Orientation horizontal
Log.i(”info”, “orientation 1 “+windowService.getOrientation());
}
else
{
Log.i(”info”, “orientation 0 “+windowService.getOrientation());
}
}
catch (DeadObjectException e)
{
e.printStackTrace();
}
- ››程序员 不妨都写一写前端代码
- ››Android 当修改一些代码时,使用什么编译命令可以最...
- ››Android 如何添加一个apk使模拟器和真机都编译进去...
- ››Android 修改Camera拍照的默认保存路径
- ››Android 如何修改默认输入法
- ››android开发中finish()和System.exit(0)的区别
- ››Android手势识别简单封装类
- ››android中查看项目数字证书的两种方法
- ››Android中获取IMEI码的办法
- ››android 相机报错 setParameters failed
- ››Android重启运用程序的代码
- ››Android为ListView的Item设置不同的布局
赞助商链接