Chinaunix首页 | 论坛 | 博客
  • 博客访问: 9219650
  • 博文数量: 1728
  • 博客积分: 12961
  • 博客等级: 上将
  • 技术积分: 19870
  • 用 户 组: 普通用户
  • 注册时间: 2009-01-09 11:25
个人简介

偷得浮生半桶水(半日闲), 好记性不如抄下来(烂笔头). 信息爆炸的时代, 学习是一项持续的工作.

文章分类

全部博文(1728)

文章存档

2024年(4)

2023年(26)

2022年(112)

2021年(217)

2020年(157)

2019年(192)

2018年(81)

2017年(78)

2016年(70)

2015年(52)

2014年(40)

2013年(51)

2012年(85)

2011年(45)

2010年(231)

2009年(287)

分类: LINUX

2010-05-21 12:08:51

大家好,今天要讲的是Android手机如何动态手机屏幕方向的,我们当中有可能手机也会有这种功能,当我们手机方向改变时,屏幕也会跟着改变,在这Android当中是很容易实现的.本节的Demo主要是界面有一个按钮,当点击时,如果屏幕方向是横排(PORTRAIT)刚将屏幕方向更改为竖排(LANDSCAPE),反之依然!我们这里主要是运用了getRequestedOrientation(),和setRequestedorientation()两个方法.但是要利用这两个方法必须先在AndroidManiefst.xml设置一下屏幕方属性,不然程序将不能正常的工作.下面我将分为N个步骤一步一步教你如何实现该Demo.
Step 1:我们建立一个Android工程,命名为ChangeOrientationDemo.
Step 2:设计UI,打开main.xml,将其代码修改如下,我们这里只是增加了一个按钮,其他什么都没有动.
"1.0" encoding="utf-8"?> 
"http://schemas.android.com/apk/res/android" 
        android:orientation="vertical" 
        android:layout_width="fill_parent" 
        android:layout_height="fill_parent" 
        > 
        android:layout_width="fill_parent"    
        android:layout_height="wrap_content"    
        android:text="@string/hello" 
        /> 
 android:id="@+id/bt1" 
 android:layout_width="wrap_content" 
 android:layout_height="wrap_content" 
 android:text="Press me Change Orientation" 
/> 
 
 
Step 3:设计主程序ChangeOrientationDemo.java,修改其代码如下: 
 
package com.android.test; 
 
import android.app.Activity; 
import android.content.pm.ActivityInfo; 
import android.os.Bundle; 
import android.view.View; 
import android.widget.Button; 
 
public class ChangeOrientationDemo extends Activity { 
        
 private Button bt1; 
    
        public void onCreate(Bundle savedInstanceState) { 
                super.onCreate(savedInstanceState); 
                setContentView(R.layout.main); 
                 
                //获取资源 
                bt1 = (Button)findViewById(R.id.bt1); 
                //增加按钮事件 
                bt1.setOnClickListener(new Button.OnClickListener(){ 
 
     @Override 
     public void onClick(View v) { 
        //如果是竖排,则改为横排 
        if(getRequestedOrientation() == ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE) 
        { 
         setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT); 
        } 
 
        //如果是横排,则改为竖排 
 
        else if(getRequestedOrientation() == ActivityInfo.SCREEN_ORIENTATION_PORTRAIT) 
        { 
         setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE); 
        } 
     } 
                    
                }); 
        } 
 

 
Step 4:在AndroidManifest.xml文件里设置默认方向,不然程序不能正常工作哦.代码如下:
"1.0" encoding="utf-8"?> 
"http://schemas.android.com/apk/res/android" 
            package="com.android.test" 
            android:versionCode="1" 
            android:versionName="1.0"
        "@drawable/icon" android:label="@string/app_name"
                ".ChangeOrientationDemo" 
                                    android:label="@string/app_name" 
                                    android:screenOrientation="portrait"
                         
                                "android.intent.action.MAIN" /> 
                                "android.intent.category.LAUNCHER" />
                        
 
                
 
 
        
 
        "3" /> 
 
    
 
Step 5:运行程序,效果如下图:
 
 OK,今天就到这里,谢谢大家!
阅读(1491) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~