我试图构建一个测试应用程序,它仅在发生配置更改时中继一条 toast 消息。(这就是它应该做的,它不起作用)最终的目的是检测用户是否将平板电脑放入键盘支架或将其从键盘支架中取出。我的清单和主要活动如下..我认为当平板电脑对 uiMode 或外部键盘进行配置更改时,此代码会触发敬酒..但是当我停靠/取消停靠时没有任何反应..请帮忙
我的清单:
<?xml version="1.0" encoding="utf-8"?>
<uses-sdk android:minSdkVersion="12" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name=".UiModeTestActivity"
android:configChanges="keyboard|uiMode"
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>
我的爪哇:
package com.eliddell;
import android.app.Activity;
import android.content.res.Configuration;
import android.os.Bundle;
import android.widget.Toast;
public class UiModeTestActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
@Override
public void onConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
Toast.makeText(getApplicationContext(), "new config:"+newConfig, Toast.LENGTH_LONG).show();
}
}