亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Configuration類響應的系統設置的事件

發布時間:2020-04-10 18:59:19 來源:網絡 閱讀:311 作者:W759851167 欄目:移動開發

    Configuration類用于描述手機設備上的配置信息。

    通過調用Activity的如下方法來獲取系統的Configuration對象。

    Configuration cfg = getResources().getConfiguration();


    該對象提供了如下常用屬性來獲取系統的配置信息。

    public float fontScale:獲取當前用戶設置的字體的縮放因子。

    public int keyboard:獲取當前設備所關聯的鍵盤類型。該屬性可能返回如下值:

    KEYBOARD_NOKEYS、KEYBOARD_QWERTY普通電腦鍵盤、KEYBOARD_12KEY(只有12個建的小鍵盤)。

    public int keyboardHidden:該屬性返回一個boolean值用于標識當前鍵盤是否可用。該屬性不僅會判斷系統地硬件鍵盤,也會判斷系統的軟鍵盤(位于屏幕上)。如果該系統的硬件鍵盤不可用,但軟鍵盤可用,該屬性也會返回KEYBOARDHIDDEN_NO,只有當兩個鍵盤都不可用時才會返回KEYBOARDHIDDEN_YES.

    public Locale locale:獲取用戶當前的Locale。

    public int mcc:獲取移動信號的國家碼。

    public int mnc:獲取移動信號的網絡碼。

    public int navigation:判斷系統上方向導航設備的類型。該屬性可能返回如NAVIGATION_NONAY(無導航)、NAVIGATION_DPAD(DPAD導航)、NAVIGATION_TRACKBALL(軌跡球導航)、NAVIGATION_WHEEL(滾輪導航)等屬性值。

    public int orientation:獲取系統屏幕的方向,該屬性可能返回ORIENTATION_LANDSCAPE(橫向屏幕)、ORIENTATION_PORTRAIT(豎向屏幕)、ORIENTATION_SQUARE(方形屏幕)等屬性值。

    public int touchscreen:獲取系統觸摸屏的觸摸方式。該屬性可能返回TOUCHSC_REEN_NOTOUCH(無觸摸屏)、TOUCHSCREEN_STYLUS(觸摸筆式的觸摸屏)、TOUCHSCREEN_FINGER(接受手指的觸摸屏)。


實例:獲取系統設備的狀態

MainActivity.java

package com.example.configurationtest;

public class MainActivity extends Activity {
	EditText ori;
	EditText navigation;
	EditText touch;
	EditText mnc;
	Button bn;

	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);

		// 獲取應用界面中的界面組件
		ori = (EditText) findViewById(R.id.ori);
		navigation = (EditText) findViewById(R.id.navigation);
		touch = (EditText) findViewById(R.id.touch);
		mnc = (EditText) findViewById(R.id.mnc);
		bn = (Button) findViewById(R.id.bn);
		bn.setOnClickListener(new OnClickListener() {

			// 為按鈕綁定事件監聽器
			public void onClick(View v) {
				// 獲取系統的Configuration對象
				Configuration cfg = getResources().getConfiguration();
				String screen = cfg.orientation == Configuration.ORIENTATION_LANDSCAPE ? "橫向屏幕"
						: "豎向屏幕";
				String mncCode = cfg.mnc + "";
				String naviName = cfg.orientation == Configuration.NAVIGATION_NONAV ? "沒有方向控制"
						: cfg.orientation == Configuration.NAVIGATION_WHEEL ? "滾輪方向控制"
								: cfg.orientation == Configuration.NAVIGATION_DPAD ? "方向鍵控制方向"
										: "軌跡球控制方向";
				String touchName = cfg.touchscreen == Configuration.TOUCHSCREEN_NOTOUCH ? "無觸摸屏"
						: "支持觸摸屏";
				ori.setText(screen);
				mnc.setText(mncCode);
				navigation.setText(naviName);
				touch.setText(touchName);
			}
		});
	}
}

activity_main.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <EditText
        android:id="@+id/ori"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

    <EditText
        android:id="@+id/navigation"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

    <EditText
        android:id="@+id/touch"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

    <EditText
        android:id="@+id/mnc"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

    <Button
        android:id="@+id/bn"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="獲取系統設備狀態" />

</LinearLayout>



    如果系統需要監聽系統設置的更改,則可以考慮重寫Activity的               onConfigurationChanged(Configuration newConfig)方法,該方法是一個基于回調的事件處理方法:當系統設置發生改變時,該方法會被自動觸發。


實例:重寫onConfigurationChanged響應系統設置更改

MainActivity.java

package com.example.changecfg;

public class MainActivity extends Activity {
	Button bn;

	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);

		bn = (Button) findViewById(R.id.bn);
		bn.setOnClickListener(new OnClickListener() {
			// 為按鈕綁定事件監聽器
			public void onClick(View v) {
				// 獲取系統的Configuration對象
				Configuration config = getResources().getConfiguration();
				// 如果當前是橫屏
				if (config.orientation == Configuration.ORIENTATION_LANDSCAPE) {
					// 設為豎屏
					MainActivity.this
							.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
				}
				// 如果當前是豎屏
				if (config.orientation == Configuration.ORIENTATION_PORTRAIT) {
					// 設為橫屏
					MainActivity.this
							.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
				}

			}
		});
	}

	// 重寫該方法,用于監聽系統設置的更改,主要是監控屏幕方向的更改
	public void onConfigurationChanged(Configuration newConfig) {
		super.onConfigurationChanged(newConfig);
		String screen = newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE ? "橫向屏幕"
				: "豎向屏幕";
		Toast.makeText(this, "\n修改后的屏幕方向為" + screen, 1).show();
	}
}


activity_main.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <Button
        android:id="@+id/bn"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="更改屏幕方向" />

</LinearLayout>


為了讓Activity能監聽屏幕方向的更改的時間,需要在配置改Activity時指定acdroid:configChanges屬性,該屬性支持的其中一種屬性值為orientation,指定Activity可以監聽屏幕方向改變的事件。


android:targetSdkVersion="12"最高只能設為12,不然無法監聽系統設置的更改。


AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.changecfg"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="12" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.example.changecfg.MainActivity"
            android:configChanges="orientation"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

政和县| 南岸区| 宁海县| 武鸣县| 穆棱市| 肥乡县| 鄂托克前旗| 确山县| 密山市| 沾化县| 台北市| 山阳县| 夏津县| 南雄市| 苏尼特左旗| 日土县| 阿荣旗| 甘洛县| 安图县| 泸定县| 恭城| 金湖县| 扶绥县| 东宁县| 铁岭市| 荣成市| 宣汉县| 高雄县| 紫阳县| 志丹县| 绥宁县| 漳州市| 孙吴县| 台东县| 岚皋县| 通许县| 遂川县| 山西省| 名山县| 丽水市| 南涧|