通过设置这个属性可以使Activity捕捉设备状态变化,以下是可以被识别的内容:
CONFIG_FONT_SCALE
CONFIG_MCC
CONFIG_MNC
CONFIG_LOCALE
CONFIG_TOUCHSCREEN
CONFIG_KEYBOARD
CONFIG_NAVIGATION
CONFIG_ORIENTATION
设置方法:将下列字段用“|”符号分隔开,例如:“locale|navigation|orientation
”
Value | Description |
“mcc“ | The IMSI mobile country code (MCC) has changed — that is, a SIM hasbeen detected and updated the MCC.移动国家号码,由三位数字组成,每个国家都有自己独立的MCC,可以识别手机用户所属国家。 |
“mnc“ | The IMSI mobile network code (MNC) has changed — that is, a SIM hasbeen detected and updated the MNC.移动网号,在一个国家或者地区中,用于区分手机用户的服务商。 |
“locale“ | The locale has changed — for example, the user has selected a new language that text should be displayed in.用户所在地区发生变化。 |
“touchscreen“ | The touchscreen has changed. (This should never normally happen.) |
“keyboard“ | The keyboard type has changed — for example, the user has plugged in an external keyboard.键盘模式发生变化,例如:用户接入外部键盘输入。 |
“keyboardHidden“ | The keyboard accessibility has changed — for example, the user has slid the keyboard out to expose it.用户打开手机硬件键盘 |
“navigation“ | The navigation type has changed. (This should never normally happen.) |
“orientation“ | The screen orientation has changed — that is, the user has rotated the device.设备旋转,横向显示和竖向显示模式切换。 |
“fontScale“ | The font scaling factor has changed — that is, the user has selected a new global font size.全局字体大小缩放发生改变 |
通过一个例子介绍这个属性的用法: 首先需要修改项目的manifest:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.androidres.ConfigChangedTesting"
android:versionCode="1"
android:versionName="1.0.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".ConfigChangedTesting"
android:label="@string/app_name"
android:configChanges="keyboardHidden|orientation">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
在Activity中添加了 android:configChanges属性,目的是当所指定属性(Configuration Changes)发生改变时,通知程序调用 onConfigurationChanged()函数。 创建一个Layout UI:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<Button
android:id="@+id/pick"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Pick"
/>
<Button
android:id="@+id/view"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="View"
/>
</LinearLayout>
这个简单的UI包含两个按钮,其中一个是通过Contact列表选择一个联系人,另外一个是查看当前选择联系人的详细内容。
项目的Java源代码:
import android.app.Activity;
import android.content.Intent;
import android.content.res.Configuration;
import android.net.Uri;
import android.os.Bundle;
import android.provider.Contacts.People;
import android.view.View;
import android.widget.Button;
public class ConfigChangedTesting extends Activity {
/** Called when the activity is first created. */
static final int PICK_REQUEST = 1337;
Button viewButton=null;
Uri contact = null;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//setContentView(R.layout.main);
setupViews();
}
public void onConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
setupViews();
}
/* (non-Javadoc)
* @see android.app.Activity#onActivityResult(int, int, android.content.Intent)
*/
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
// TODO Auto-generated method stub
//super.onActivityResult(requestCode, resultCode, data);
if(requestCode == PICK_REQUEST){
if(resultCode==RESULT_OK){
contact = data.getData();
viewButton.setEnabled(true);
}
}
}
private void setupViews(){
setContentView(R.layout.main);
Button pickBtn = (Button)findViewById(R.id.pick);
pickBtn.setOnClickListener(new View.OnClickListener(){
public void onClick(View v) {
// TODO Auto-generated method stub
Intent i=new Intent(Intent.ACTION_PICK,People.CONTENT_URI);
startActivityForResult(i,PICK_REQUEST);
}
});
viewButton =(Button)findViewById(R.id.view);
viewButton.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
startActivity(new Intent(Intent.ACTION_VIEW, contact));
}
});
viewButton.setEnabled(contact!=null);
}
}
文章来源
翻译:
http://hiapk.com/thread-6199-1-1.html
原文:
http://www.androidguys.com/2008/11/11/rotational-forces-part-three/
转载请署名文章来自Androidres.com,并于标题前注明“【转载】”
分享到:
相关推荐
当设置为`true`时,此`Activity`将不会出现在“最近使用的应用”列表中。这对于敏感操作或隐私相关的`Activity`很有用,可以防止用户意外访问。 #### android:exported 决定`Activity`是否可以被其他应用组件调用。...
让 Android 横竖屏切换时不销毁当前的 Activity 需要使用 `android:configChanges` 属性和 `onConfigurationChanged` 方法。同时,我们也需要正确处理屏幕方向的改变,以确保应用程序的正确运行。
如果设置为"true",activity不会出现在最近使用的应用列表中,用户无法通过此列表快速回到该activity。 7. android:exported=["true" | "false"] 表示activity是否允许其他应用的组件(如意图)来调用。"true...
默认情况下,Activity会全屏显示,但我们可以通过修改Activity的属性和使用自定义布局来改变这一行为。 1. 修改Activity的属性: 在AndroidManifest.xml中,可以为特定Activity添加`android:resizeableActivity=...
为了避免不必要的重建,可以通过在AndroidManifest.xml中指定Activity的android:configChanges属性,或重写onConfigurationChanged()方法来手动处理配置变化。 总结起来,Android的Activity是构建用户界面和实现...
7. **处理配置变更**:如果`LauncherActivity`的布局可能因屏幕方向改变或其他配置变更而变化,需要适当地处理这些情况,例如使用`android:configChanges`属性或重写`onConfigurationChanged()`方法。 8. **测试与...
此外,通过设置android:configChanges属性,可以控制Activity是否需要重新创建,从而避免不必要的状态丢失。 了解Activity和Fragment的生命周期对于优化应用性能至关重要。合理管理它们可以帮助减少资源消耗,提高...
开发者可以通过重写onSaveInstanceState()保存状态,onRestoreInstanceState()恢复状态,或者使用configChanges属性避免重启。 8. **TaskAffinity**:每个Activity都关联了一个任务亲和力,决定它应该属于哪个任务...
开发者可以使用`android:configChanges`属性来手动处理配置变更,避免不必要的重建。 六、Activity的保存与恢复状态 当Activity被系统销毁(如屏幕旋转)时,可以使用`onSaveInstanceState(Bundle)`保存当前状态,...
4. **android:configChanges**:指定哪些配置变化会导致Activity的`onConfigurationChanged()`方法被调用,如屏幕方向、导航方式或语言更改等。如果不想因为配置改变而重新创建Activity,可以手动处理这些变化。 5....
使用`android:configChanges`属性可以在XML清单文件中指定哪些配置更改应由Activity自己处理,而不是默认销毁并重建Activity。`onConfigurationChanged(Configuration newConfig)`方法可用于处理这些特定配置变化。 ...
通过修改`AndroidManifest.xml`中的`<activity>`标签,可以设置`android:theme`属性,使用预定义的主题或者自定义主题样式。 6. **多窗口支持**:从Android 7.0开始,`Activity`支持在分屏模式下运行。开发者需要...
2. **配置变更不销毁Activity**:通过在AndroidManifest.xml中对应的Activity标签中添加`android:configChanges="orientation|screenSize"`属性,指示系统不要销毁Activity,而是调用`onConfigurationChanged...
1. 使用`android:configChanges="orientation|screenSize"`属性,在AndroidManifest.xml中指定Activity对横竖屏变化的处理方式,让系统不再默认销毁Activity。 2. 在Activity中重写`onConfigurationChanged...
开发者可以通过重写onSaveInstanceState()保存状态,并在onRestoreInstanceState()中恢复,或者使用configChanges属性避免不必要的重建。 7. **Fragment与Activity**:Fragment是Android 3.0引入的组件,可以嵌入到...
在这个方法中,我们可以处理屏幕方向的变化,例如重新布局 UI 元素或加载新的资源。 Android 还提供了 android:configChanges 属性来指定 Activity 的配置变化。该属性可以指定 Activity 对于配置变化的处理方式,...
如果希望在配置变更时不重建Activity,可以使用onConfigurationChanged()方法配合android:configChanges配置。 九、Activity的权限管理 某些操作可能需要特定的权限,如读写文件、访问网络等。开发者需要在...
通过设置AndroidManifest.xml中Activity的android:configChanges属性,可以改变系统对屏幕方向改变事件的处理方式。例如,设置android:configChanges="orientation"可以让系统不再重新创建Activity,而是调用...
通过重写onSaveInstanceState()和onRestoreInstanceState(),或者在AndroidManifest.xml中指定android:configChanges属性,可以控制如何处理这些变化。 最后,了解Activity的权限管理也很重要。某些操作如读写文件...
在Android应用开发中,Activity是用户界面的基本单元,它的生命周期管理是开发者必须深入理解的关键概念。...开发者应根据应用的具体需求,灵活运用`android:configChanges`属性,实现对Activity生命周期的精细控制。