2012-09-15 89 views
0

我的活動正在輪換。 不知道爲什麼?旋轉活動關閉

我也檢查了這個問題: Activity restart on rotation 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(); 
} 
+0

是否強制關閉?說它沒有迴應? – Miguel

+0

No.Solved.Thanks to Rajendra。 –

回答

5

這可能會幫助你

if your android:targetSdkVersion="12" or less 
android:configChanges="orientation|keyboardHidden"> 

if your android:targetSdkVersion="13" or more 
android:configChanges="orientation|keyboardHidden|screenSize"> 
+0

你的問題解決了? – Rajendra

+0

解決。謝謝。 –

+0

享受....................... – Rajendra