2010-05-12 113 views
2

我在自動啓動後正確初始化我的應用程序時遇到問題。Android:自動啓動應用程序和加載首選項

我設法讓自動啓動工作,重新啓動後,應用程序顯示爲啓動,但計時器不是。 我的猜測是,當我調用context.startService()時,不會調用MyApp的「onCreate」函數。定時器在MyApp的doActivity()函數中設置。

我將不勝感激關於我可能做錯的任何提示或指向優秀教程的鏈接。 :)

清單

<activity android:name=".MyApp" 
       android:label="@string/app_name"> 
     <intent-filter> 
      <action android:name="android.intent.action.MAIN" /> 
      <category android:name="android.intent.category.LAUNCHER" /> 
     </intent-filter> 
    </activity> 

    <receiver android:name="MyApp_Receiver"> 
     <intent-filter> 
      <action android:name="android.intent.action.BOOT_COMPLETED" /> 
      <category android:name="android.intent.category.DEFAULT" /> 
     </intent-filter> 
    </receiver>[/syntax] 

MyApp_Receiver是具有以下兩個功能

public void onReceive(Context context, Intent intent) { 
    // Do Autostart if intent is "BOOT_COMPLETED" 
    if ((intent.getAction() != null) && (intent.getAction().equals("android.intent.action.BOOT_COMPLETED"))) 
    { 
     // Start the service 
     context.startService(new Intent(context, MyApp.class)); 
    } 
    // Else do activity 
    else 
     MAIN_ACTIVITY.doActivity(); 
} 

public static void setMainActivity(MyApp activity) 
{ 
    MAIN_ACTIVITY = activity; 
} 

MyApp的延伸PreferenceActivity一個BoradcastReciever並且具有的onCreate()和一個doActivity (),doActivity()讀出首選項並根據它們設置一個計時器。

public void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 

    // Show preferences 
    addPreferencesFromResource(R.xml.preferences);; 

    // Register Preference Click Listeners 
    getPreferenceScreen().getSharedPreferences().registerOnSharedPreferenceChangeListener(this); 


    // Prepare for one-shot alarms 
    if (mIntent == null) 
    { 
     mIntent = new Intent(MyApp.this, MyApp_Receiver.class); 
     mSender = PendingIntent.getBroadcast(MyApp.this, 
       0, mIntent, 0); 
     MyApp_Receiver.setMainActivity(this); 
    } 

    // Refresh and set all timers on start 
    doActivity(); 
} 

回答

3

的定時器在doActivity()MyApp的的 功能設置。

這將永遠不會工作。 MyApp是一個活動,在用戶進入並啓動它之前不會創建。

onReceive()中讀取您的SharedPreferences並在此設置警報。

+0

謝謝!很高興知道。 :) 試圖實施它我已經到了下一個問題。我使用以下方法添加我的偏好: addPreferencesFromResource(R.xml.preferences); 我似乎無法得到他們的名字,所以在onRecieve()我可以閱讀它們: context.getSharedPreferences(「prefs_myApp」,Context.MODE_PRIVATE); 我真的想從XML創建它們,而不是從代碼創建它們...... – BBoom 2010-05-12 12:01:27

+2

使用'PreferenceManager.getDefaultSharedPreferences'。 – CommonsWare 2010-05-12 12:24:25

+0

真棒,謝謝!你搖滾。 :)現在完美工作。 (如果我有足夠的聲望,我會給你投票:P) – BBoom 2010-05-12 12:59:08

相關問題