2014年8月4日 星期一

設定全螢幕及設定橫向

//在AndroidManifast.xml中的activity加入
<activity
            android:name="com.hifive.toystage.ToyActivity"
            android:label="@string/app_name"
            android:screenOrientation="landscape"
            android:theme="@android:style/Theme.NoTitleBar" >


  //以下方法並不適用 他會先出現標題之後再轉成無標題的怪異行徑
  //若要採用 請記得放至setContentView()的前面
  
  private void setWindows() {
    getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
    WindowManager.LayoutParams.FLAG_FULLSCREEN);//設定全螢幕
    requestWindowFeature(Window.FEATURE_NO_TITLE);//設定無標題
    setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);//設定橫向
  }

沒有留言:

張貼留言