背景:
阅读新闻
Android中横屏切换的布局
[日期:2013-07-08] 来源:Linux社区 作者:tmacsky [字体:]
Android中横屏切换的布局
切换这种效果多用在音视频播放器里面:
竖屏时这样显示:
横屏时这样显示:
activity代码:
package com.tmacsky;
import android.app.Activity;
import android.content.res.Configuration;
import android.os.Bundle;
public class RotateSampleActivity extends Activity {
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.lan);
}
@Override
public void onConfigurationChanged(Configuration newConfig) {
// TODO Auto-generated method stub
super.onConfigurationChanged(newConfig);
//启动时默认是竖屏
if (newConfig.orientation == Configuration.ORIENTATION_PORTRAIT) {
setContentView(R.layout.portrait);
}
//切换就是横屏
else if (newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE) {
setContentView(R.layout.lan);
}
}
}
layout文件直接在编辑器里拖4个button就可以了,水平布局lan和垂直布局portrait 2个layout文件
主要的是此时要在manifest.xml文件中添加权限:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.tmacsky"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="8" />
//给一个旋转后的权限
<uses-permission android:name="android.permission.CHANGE_CONFIGURATION" />
<application android:icon="@drawable/ic_launcher" android:label="@string/app_name" >
<activity android:name=".RotateSampleActivity"
android:configChanges="orientation|locale"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
相关阅读:
更多Android相关信息见Android 专题页面 ?tid=11
设置AndroidManifest.xml文件中Android程序的icon
相关资讯 Android布局 Android横屏切换
本文评论 查看全部评论 (0)
尊重网上道德,遵守中华人民共和国的各项有关法律法规 承担一切因您的行为而直接或间接导致的民事或刑事法律责任 本站管理人员有权保留或删除其管辖留言中的任意内容 本站有权在网站内转载或引用您的评论 参与本评论即表明您已经阅读并接受上述条款
评论声明
最新资讯