画面の向きを処理する方法を説明するデモ アプリを作成しています。ユーザーがインクリメントボタンを押したときにカウントをインクリメントし、その逆のカウントをインクリメントするシンプルなカウンターアプリです。これが私のコードです。マニフェストファイルに android:configChanges="keyboardHidden|orientation" を含め、 onConfigurationChanged メソッドもオーバーライドしました。残念ながら、カウントの値を保持することができず、エミュレータを横向きに切り替えるとカウントが 0 にリセットされます。この問題を解決するにはどうすればよいですか?
public class Counter_demoActivity extends Activity {
int count=0;
TextView tv;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
requestWindowFeature(Window.FEATURE_NO_TITLE);
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
//UIActivity();
Button add1=(Button)findViewById(R.id.btn1);
Button sub1=(Button)findViewById(R.id.btn2);
tv=(TextView)findViewById(R.id.tv1);
add1.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
count++;
tv.setText("Your Count is " + count);
}
});
sub1.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
count--;
tv.setText("Your Count is " +count);
}
});
}
@Override
public void onConfigurationChanged(Configuration newConfig) {
// TODO Auto-generated method stub
super.onConfigurationChanged(newConfig);
setContentView(R.layout.main);
//UIActivity();
}
/*public void UIActivity(){
this.tv=(TextView)this.findViewById(R.id.tv1);
this.count=getChangingConfigurations();
}*/
}
私のマニフェストファイル:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.arif.counter_demo"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="14" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
>
<activity
android:label="@string/app_name"
android:name=".Counter_demoActivity"
android:configChanges="keyboardHidden|orientation|keyboard" >
<intent-filter >
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>