推荐安卓开发神器(里面有各种UI特效和android代码库实例)

大家好,今天要讲的是Android手机如何动态手机屏幕方向的,我们当中有可能手机也会有这种功能,当我们手机方向改变时,屏幕也会跟着改变,在这Android当中是很容易实现的.本节的Demo主要是界面有一个按钮,当点击时,如果屏幕方向是横排(PORTRAIT)刚将屏幕方向更改为竖排(LANDSCAPE),反之依然!我们这里主要是运用了getRequestedOrientation(),和setRequestedorientation()两个方法.但是要利用这两个方法必须先在AndroidManiefst.xml设置一下屏幕方属性,不然程序将不能正常的工作.下面我将分为N个步骤一步一步教你如何实现该Demo.

Step 1:我们建立一个Android工程,命名为ChangeOrientationDemo.

Step 2:设计UI,打开main.xml,将其代码修改如下,我们这里只是增加了一个按钮,其他什么都没有动.

<?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"    ><TextView      android:layout_width="fill_parent"     android:layout_height="wrap_content"     android:text="@string/hello"    /><Button android:id="@+id/bt1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Press me Change Orientation"/></LinearLayout>


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文件里设置默认方向,不然程序不能正常工作哦.代码如下:

<?xml version="1.0" encoding="utf-8"?><manifest xmlns:android="http://schemas.android.com/apk/res/android"      package="com.android.test"      android:versionCode="1"      android:versionName="1.0">    <application android:icon="@drawable/icon" android:label="@string/app_name">        <activity android:name=".ChangeOrientationDemo"                  android:label="@string/app_name"                  android:screenOrientation="portrait">            <intent-filter>                <action android:name="android.intent.action.MAIN" />                <category android:name="android.intent.category.LAUNCHER" />            </intent-filter>        </activity>    </application>    <uses-sdk android:minSdkVersion="3" /></manifest>


Step 5:运行程序,效果如下图:

更多相关文章

  1. Hello~ Android(安卓)开发者们
  2. 这些年正Android(安卓)- 序言
  3. 工作方向转变—— React Native For Android
  4. Android(安卓)MediaStore仿微信朋友圈获取图片及视频
  5. 处女男学Android(一)---Configuration类简介
  6. 方向传感器
  7. Android(安卓)几种常用关于屏幕操作的方法(获取屏幕大小,全屏,显示
  8. android手势方向的判断工具类,超简单
  9. Android(安卓)手机翻转实现技术

随机推荐

  1. Android调用系统的发邮件方法
  2. 【Android】 触摸事件分发机制
  3. TabLayout属性及自定义底部导航栏
  4. ADB和Fastboot的谷歌官方下载链接
  5. android binder c++层-客户端(c++) 调用
  6. Android 沉浸式状态栏跟虚拟按键冲突问题
  7. Android SQLite数据库相关操作
  8. vold.fstab DirectVolume
  9. Android 记住密码和自动登录界面的实现(Sh
  10. Google用户登录界面 Android实现