4

我面临一个问题,我创建了一个Controller单例类,但是当我访问同一应用程序的不同活动时,它的对象正在重新创建,

Main_Activity是我的启动活动

public class Main_Activity extends Activity{
       private Controller simpleController;
       protected void onCreate(Bundle savedInstanceState) {
                 super.onCreate(savedInstanceState);
                 setContentView(R.layout.main);
                 simpleController = Controller.getInstance(this);
       }
}

这是我Controller的单例,在其中我设置了从现在开始 10 秒的警报,我MyMainLocalReciever收到该警报并使用通知进行通知。

public class Controller {
       private MediaPlayer mp;
       public Context context;
       private static Controller instance;

       public static Controller getInstance(Context context) {
              if (instance == null) {
                    instance = new Controller(context);
              }
              return instance;
       }

      private Controller(Context context) {
            Log.d("TAG", "Creating Controller object");
            mp = null;
            this.context = context;
            setAlarm(10);
        }

     public void setAlarm(int position) {
        Intent intent = new Intent(context, MyMainLocalReciever.class);
        intent.putExtra("alarm_id", "" + position);
        PendingIntent sender = PendingIntent.getBroadcast(context,
                position, intent, PendingIntent.FLAG_UPDATE_CURRENT);

        // Get the AlarmManager service
        AlarmManager am = (AlarmManager) context
                .getSystemService(Activity.ALARM_SERVICE);
        am.cancel(sender);
        am.set(AlarmManager.RTC_WAKEUP, System.currentTimeMillis()
                + (position*1000), sender);
    }

}

这是我MyMainLocalReciever通知的接收器,我正在绑定一个启动名为的活动的意图NotificationDialog

public class MyMainLocalReciever extends BroadcastReceiver {
private NotificationManager notificationManager;
private int alarmId = 0;

@Override
public void onReceive(Context context, Intent intent) {
    if (notificationManager == null) {
        notificationManager = (NotificationManager) context
                .getSystemService(Context.NOTIFICATION_SERVICE);
    }
    Bundle bundle = intent.getExtras();

    String alarm_Id = bundle.getString("alarm_id");

        try {
        alarmId = Integer.parseInt(alarm_Id);
    } catch (Exception e) {
        Log.d("Exception", "exception in converting");
    }

    Controller myC = Controller.getInstance(context);
    if ((myC.getMp() != null)) {
        myC.getMp().stop();
        myC.setMp(null);
    }
    if (myC.getMp() == null) {

            myC.setMp(MediaPlayer.create(context , R.id.mpFile));
            myC.getMp().start();
    }

    NotificationCompat.Builder builder = new NotificationCompat.Builder(context)
            .setTicker("Its Ticker")
            .setSmallIcon(R.drawable.ic_launcher)
            .setContentTitle("Its Title")
            .setContentText("Its Context")
            .setAutoCancel(true)
            .setContentIntent(
                    PendingIntent.getActivity(context, 0, new Intent(context,
                            NotificationDialog.class)
                            .addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
                                    | Intent.FLAG_ACTIVITY_CLEAR_TASK), 0));

    notificationManager.notify("interstitial_tag", alarmId,
            builder.getNotification());

}

}

到现在(之前NotificationDialog)代码正在工作MediaPlayer,类中的完美对象也Controller工作正常,但是当我Controller在这里访问我的单例时NotificationDialog,它正在创建控制器的新对象,它不应该这样做,它应该保留那个Controller是单例的对象.

public class NotificationDialog extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.notification_dialog);

}

public void onViewContent(View v) { //this method is invoked when I click on a button binded in xml file

    Controller myC = Controller.getInstance(getApplicationContext());

    if (myC.getMp() != null) {
        myC.getMp().stop();
        myC.setMp(null);
    }
    finish();
}

}

请在这方面帮助我,我将感谢您的帮助。问候

编辑: 这是我的清单

<application
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name=".Main_Activity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name="test.SettingsActivity"
        android:label="@string/app_name" />
    <activity
        android:name="test.NotificationDialog"
        android:label="@string/app_name" />
    <service android:name="test.MyService" >
    </service>

    <receiver
        android:name="test.MyMainLocalReciever"
        android:process=":remote" />
</application>
4

3 回答 3

6

当您的进程在后台空闲时,它会被 Android 杀死。如果没有活动组件(活动、服务等)或需要内存(即使您有活动组件),Android 将终止您的进程。

当用户使用您的通知时,Android 会为您创建一个新进程。这就是 Singleton 消失并需要重新创建的原因。

编辑:

在您发布清单后,我立即看到了问题。就是这个:

<receiver
    android:name="test.MyMainLocalReciever"
    android:process=":remote" />

你的进程没有被杀死。您的 BroadcastReceiver 正在另一个单独的进程中运行。在那个过程中,单身人士还没有建立起来。

android:process=":remote"<receiver>清单中的标签中删除。

于 2012-07-12T13:26:21.957 回答
1

请阅读Initialization-on-demand holder idiom。这是一篇关于 Java 编程语言中正确的 Singleton 的非常清晰和简单的文章。

于 2012-07-12T12:59:55.327 回答
0

由于 Singleton 将是许多活动使用的静态对象,因此您不必将 Context 传递给构造函数。将它传递给需要它的方法是一个更好的选择。

public class Controller {

        private static volatile Controller instance = null;

        private Controller () {   }

        public static Controller getInstance() {
                if (instance == null) {
                        synchronized (Controller .class)
                                if (instance == null) {
                                        instance = new Controller();
                                }
                }
                return instance;
        }

        public void setAlarm(Context context, int position) {
             // do stuff
        }
}
于 2012-07-12T13:04:14.277 回答