动态更改 Android 的屏幕方向
2010-03-05 18:25:00 来源:WEB开发网核心提示:这节要讲的是Android手机如何动态更改手机屏幕方向,我们的手机有可能也会有这种功能,动态更改 Android 的屏幕方向,当我们手机方向改变时,屏幕也会跟着改变,不然程序将不能正常工作.下面我就教你如何实现:Step 1:我们建立一个Android工程,命名为 ChgAndroidOrientation.Step
这节要讲的是Android手机如何动态更改手机屏幕方向,我们的手机有可能也会有这种功能,当我们手机方向改变时,屏幕也会跟着改变,在这Android当中是很容易实现的.本节的例程主要是界面有一个按钮,当点击时,如果屏幕方向是横排(PORTRAIT)刚将屏幕方向更改为竖排(LANDSCAPE),反之依然!我们这里主要是运用了getRequestedOrientation(),和setRequestedorientation()两个方法.但是要利用这两个方法必须先在AndroidManiefst.xml设置一下屏幕方属性,不然程序将不能正常工作.下面我就教你如何实现:
Step 1:我们建立一个Android工程,命名为 ChgAndroidOrientation.
Step 2:打开main.xml,设计UI,我们这里只是增加了一个按钮,其他什么都没有动.
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="#001030"> <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/hello" android:textSize="20sp" android:gravity="center" /> <Button android:layout_height="wrap_content" android:id="@+id/bt_push" android:layout_width="fill_parent" android:text="Push Change Orientation"></Button> </LinearLayout> |
Step 3:设计主程序ChgAndroidOrientation.java,修改其代码如下:
package com.chgandroidorientation;
import android.app.Activity;
import android.os.Bundle;
import android.content.pm.ActivityInfo;
import android.view.View;
import android.widget.Button;
public class ChgAndroidOrientation extends Activity {
/** Called when the activity is first created. */
[]
更多精彩
赞助商链接