landscapeandroid
⑴ 安卓手機如何開啟橫屏模式
1.先找到並打開設置
拓展資料
Android 設置橫屏模式顯示,橫屏模式大部分情況能彌補豎屏的不足——字體小、鍵盤小、畫幅比例不合適,而且橫屏模式下能提供更華麗、更流暢的感官體驗,android 橫屏,android landscape mode ,android 強制橫屏,android 強制豎屏,android 橫屏布局,android 設置全屏模式。
⑵ 如何配置android 模擬器禁止屏幕旋轉
禁止屏幕隨手機旋轉變化
有時候我們希望讓一個程序的界面始終保持在一個方向,不隨手機方向旋轉而變化:
在AndroidManifest.xml的每一個需要禁止轉向的Activity配置中加入android:screenOrientation=」landscape」 屬性。
landscape = 橫向
portrait = 縱向
避免在轉屏時重啟Activity
android中每次屏幕方向切換時都會重啟Activity,所以應該在Activity銷毀前保存當前活動的狀態,在Activity再次 Create的時候載入配置,那樣,進行中的游戲就不會自動重啟了!
要避免在轉屏時重啟Activity,可以通過在AndroidManifest.xml文件中重新定義方向(給每個Activity加上 android:configChanges=」keyboardHidden|orientation」屬性)。
在需要控制屏幕顯示方向的Activity中重寫 onConfigurationChanged(Configuration newConfig)方法,這樣在轉屏時就不會重啟Activity了。
if(newConfig.orientation==Configuration.ORIENTATION_LANDSCAPE) {
//橫向
setContentView(R.layout.file_list_landscape);
} else {
//豎向
setContentView(R.layout.file_list);
}
<activity android:name="com.myapp.MyActivity"
android:label="@string/app_name"
android:screenOrientation="landscape"
android:configChanges="orientation"
>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
android:screenOrientation=」landscape」
android:configChanges=」keyboardHidden|orientation」
@Override
public void onConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
if(newConfig.orientation==Configuration.ORIENTATION_LANDSCAPE) {
//橫向
setContentView(R.layout.file_list_landscape);
} else {
//豎向
setContentView(R.layout.file_list);
}
}
在模擬器中可以按 CTL+F11 模擬做屏幕旋轉。
⑶ android 網頁判斷有沒有安裝app
html中其實是無法判斷應用是否安裝,除非在webview中通過js bridge,這里通過一種方式達到此目的。
1、編輯AndroidManifest.xml:
主要是增加第二個<intent-filter>,myapp用來標識schema,最好能保證手機系統唯一,那樣就可以打開應用,而不是彈出一個選擇框。
android:pathPrefix標識url的path,可以附帶自己的數據通過string傳遞到activity,比如完整url為 myapp://xxx/openwith?data=mydata
<activity
android:name="com.abc.MainActivity"
android:configChanges="orientation|keyboardHidden|navigation|screenSize"
android:screenOrientation="landscape"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT"/>
<data android:scheme="myapp" android:pathPrefix="/xxx/openwith" />
</intent-filter>
</activity>
然後通過activity獲得data數據:
public void onCreate(Bundle savedInstanceState) {
Uri uridata = this.getIntent().getData();
String mydata = uridata.getQueryParameter("data");
...
}
2、編寫html頁面:
整個頁面也許是某個app的詳細介紹,這里只寫出關鍵的js代碼:
function openApp() {
if (/android/i.test(navigator.userAgent)) {
var isrefresh = getUrlParam('refresh'); // 獲得refresh參數
if(isrefresh == 1) {
return
}
window.location.href = 'myapp://xxx/openwith?data=mydata';
window.setTimeout(function () {
window.location.href += '&refresh=1' // 附加一個特殊參數,用來標識這次刷新不要再調用myapp:// 了
}, 500);
}
}
上面代碼可以達到這樣一個目的,先請求 myapp:// ,如果系統能處理,或者說已經安裝了myapp表示的應用,那麼就可以打開,另外,如果不能打開,直接刷新一下當前頁面,等於是重置location。
⑷ 安卓手機如何開啟橫屏模式
1.先找到並打開設置
拓展資料
Android 設置橫屏模式顯示,橫屏模式大部分情況能彌補豎屏的不足——字體小、鍵盤小、畫幅比例不合適,而且橫屏模式下能提供更華麗、更流暢的感官體驗,android 橫屏,android landscape mode ,android 強制橫屏,android 強制豎屏,android 橫屏布局,android 設置全屏模式。
⑸ Web頁面怎樣判定app是否安裝
html中其實是無法判斷應用是否安裝,除非在webview中通過js bridge,這里通過一種方式達到此目的。
1、編輯AndroidManifest.xml:
主要是增加第二個<intent-filter>,myapp用來標識schema,最好能保證手機系統唯一,那樣就可以打開應用,而不是彈出一個選擇框。
android:pathPrefix標識url的path,可以附帶自己的數據通過string傳遞到activity,比如完整url為 myapp://xxx/openwith?data=mydata
<activity
android:name="com.abc.MainActivity"
android:configChanges="orientation|keyboardHidden|navigation|screenSize"
android:screenOrientation="landscape"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT"/>
<data android:scheme="myapp" android:pathPrefix="/xxx/openwith" />
</intent-filter>
</activity>
然後通過activity獲得data數據:
public void onCreate(Bundle savedInstanceState) {
Uri uridata = this.getIntent().getData();
String mydata = uridata.getQueryParameter("data");
...
}
2、編寫html頁面:
整個頁面也許是某個app的詳細介紹,這里只寫出關鍵的js代碼:
function openApp() {
if (/android/i.test(navigator.userAgent)) {
var isrefresh = getUrlParam('refresh'); // 獲得refresh參數
if(isrefresh == 1) {
return
}
window.location.href = 'myapp://xxx/openwith?data=mydata';
window.setTimeout(function () {
window.location.href += '&refresh=1' // 附加一個特殊參數,用來標識這次刷新不要再調用myapp:// 了
}, 500);
}
}
上面代碼可以達到這樣一個目的,先請求 myapp:// ,如果系統能處理,或者說已經安裝了myapp表示的應用,那麼就可以打開,另外,如果不能打開,直接刷新一下當前頁面,等於是重置location。
⑹ 怎樣讓android開發程序不隨著屏幕轉動啊
1.在AndroidManifest.xml的每一個需要禁止轉向的Activity配置中加入 android:screenOrientation=」landscape」 屬性。 landscape = 橫向 portrait = 縱向 2.android中每次屏幕方向切換時都會重啟Activity,所以應該在Activity銷毀前保存當前活動的。
禁止屏幕隨手機旋轉變化 有時候我們希望讓一個程序的界面始終保持在一個方向,不隨手機方向旋轉而變化: 在AndroidManifest.xml的每一個需要禁止轉向的Activity配置中加入android:screenOrientation=」landscape」 屬性。 landscape = 橫向 portra。
在manifest文件中加入 screenOrientation=「portrait」 限制屏幕豎屏顯示 screenOrientation=「landscape」 限制屏幕橫屏顯示
使用嵌套布局 相對布局裡面嵌套一個線性布局 可以防止出現解析度混亂 這里我們使用相對布局嵌套一個線性布局可以完成 標題在最上方 最下方是一個ActivityGroup 右邊的abcdef。選項條在最右邊 這3個都是相對布局裡的元素 然後 中間是一個線性布。
LZ可以試試android:screenOrientation="portrait"強制豎屏,然後通過感測器來檢測是否旋轉了屏幕。LZ可以先嘗試一下啊加速度感測器看看,這個應該每個手機都會有
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE););//強制為橫屏 或者在AndroidManifest.xml 裡面添加android:screenOrientation=」landscape」
Android 平台提供了兩類動畫,一類是 Tween 動畫,即通過對場景里的對象不斷做圖像變換(平移、縮放、旋轉)產生動畫效果;第二類是 Frame 動畫,即順序播放事先做好的圖像,跟電影類似。本文分析 Tween動畫的rotate實現旋轉效果。