Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android實現固定屏幕顯示的方法

Android實現固定屏幕顯示的方法

編輯:關於Android編程

本文實例講述了Android實現固定屏幕顯示的方法。分享給大家供大家參考。具體如下:

在Android開發中我們會碰到開發屏幕扭轉的情況,如何固定住屏幕ScreenOrientation 呢?

在學習jetboy代碼時,發現屏幕被旋轉了,代查代碼沒有找到相關設置,在manifest.xml中找到了相關的代碼:

找到這名代碼:復制代碼 代碼如下:android:screenOrientation="portrait"
portrait表示橫向,landscape表示縱向

如果要使Activity的View界面全屏,只需要將最上面的信號欄和Activity的Title欄隱藏掉即可,隱藏Title欄的代碼:
復制代碼 代碼如下:requestWindowFeature(Window.FEATURE_NO_TITLE);

配置文件裡代碼:
復制代碼 代碼如下:android:theme="@android:style/Theme.NoTitleBar"
 
隱藏信號欄的代碼:
復制代碼 代碼如下:getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
 
其它使用:
復制代碼 代碼如下:getWindow().setFlags(WindowManager.LayoutParams.TYPE_STATUS_BAR, WindowManager.LayoutParams.TYPE_STATUS_BAR);
 
至此Android開發中的屏幕固定問題就解決了!

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="com.example.android.jetboy" android:versionCode="1"
  android:versionName="1.0.0"> 
  <application android:icon="@drawable/icon"
    android:label="@string/app_name"
    android:theme="@android:style/Theme.NoTitleBar"> 
    <activity android:name=".JetBoy"
      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="4"></uses-sdk> 
  <!--  
  <uses-library android:name="android.test.runner" /> 
  <instrumentation 
  android:name="android.test.InstrumentationTestRunner" 
  android:targetPackage="com.example.android.jetboy" 
  android:functionalTest="true" android:label="Jetboy Test All Runner"/>    
  <uses-permission android:name="android.permission.RUN_INSTRUMENTATION"/> 
   --> 
</manifest> 
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
 package="com.example.android.jetboy" android:versionCode="1"
 android:versionName="1.0.0">
 <application android:icon="@drawable/icon"
 android:label="@string/app_name"
 android:theme="@android:style/Theme.NoTitleBar">
 <activity android:name=".JetBoy"
  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="4"></uses-sdk>
 <!--
 <uses-library android:name="android.test.runner" />
 <instrumentation
  android:name="android.test.InstrumentationTestRunner"
  android:targetPackage="com.example.android.jetboy"
  android:functionalTest="true" android:label="Jetboy Test All Runner"/>  
 <uses-permission android:name="android.permission.RUN_INSTRUMENTATION"/>
 -->
</manifest>

希望本文所述對大家的Android程序設計有所幫助。

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved