私のアクティビティはローテーションに近づいています。理由がわかりませんか?
また、私はこの質問をチェックしました: ローテーションAndroidでのアクティビティの再開 しかし、解決策を見つけることができません。
これは私のoncreate関数です:
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.manage);
//Defining and Getting Saved Preferences
data=getSharedPreferences("cybapps", 0);
dataeditor=data.edit();
//To Delete all Preferences
dataeditor.clear();
dataeditor.commit();
//Declaration
btn_delete=(Button)findViewById(R.id.btn_delete);
btn_schedule=(Button)findViewById(R.id.btn_schedule);
btn_deschedule=(Button)findViewById(R.id.btn_deschedule);
profilelist=(ListView)findViewById(R.id.profilelist);
am=(AudioManager)getSystemService(Context.AUDIO_SERVICE);
status=(TextView)findViewById(R.id.status);
random=new Random();
btn_delete.setOnClickListener(this);
btn_schedule.setOnClickListener(this);
btn_deschedule.setOnClickListener(this);
//Listout all profiles
listout();
}