我目前有代码在我的应用程序中的两个入口点之间共享一个变量。变量是iconCount变量,用于指示用户在图标旁边的主屏幕上显示的通知数量。我设法做到这一点的方式是单身,它(似乎)目前正常工作。现在的问题是,当我完全关闭并打开手机时,我不希望这些通知重置为零。如果有7个通知,我希望即使设备重启后也会有7个通知。为此我显然需要一个持久的商店集成,我已经研究了一段时间。
到目前为止,我的裸单身代码是:
public class MyAppIndicator{
public ApplicationIndicator _indicator;
public static MyAppIndicator _instance;
MyAppIndicator () {
setupIndicator();
}
public static MyAppIndicator getInstance() {
if (_instance == null) {
_instance = new MyAppIndicator ();
}
return(_instance);
}
public void setupIndicator() {
//Setup notification
if (_indicator == null) {
ApplicationIndicatorRegistry reg = ApplicationIndicatorRegistry.getInstance();
_indicator = reg.getApplicationIndicator();
if(_indicator == null) {
ApplicationIcon icon = new ApplicationIcon(EncodedImage.getEncodedImageResource ("notificationsdemo_jde.png"));
_indicator = reg.register(icon, false, true);
_indicator.setValue(0);
_indicator.setVisible(false);
}
}
}
public void setVisible1(boolean visible, int count) {
if (_indicator != null) {
if (visible) {
_indicator.setVisible(true);
_indicator.setValue(count); //UserInterface.incrementCount()
} else {
_indicator.setVisible(false);
}
}
}
}
我一直在使用黑莓教程来弄清楚如何实现可持久存储:http://supportforums.blackberry.com/t5/Java-Development/Storing-persistent-data/ta-p/442747
现在在我进一步发展之前,我必须强调我对java开发很新,所以我的编码可能完全错误,但这是我试过的:
public void setVisible1(boolean visible, int count) {
if (_indicator != null) {
if (visible) {
_indicator.setVisible(true);
_indicator.setValue(count); //UserInterface.incrementCount()
StoreInfo info = new StoreInfo();
info.incElement();
synchronized (persistentCount) {
//persistentCount.setContents(_data);
persistentCount.commit();
}
} else {
_indicator.setVisible(false);
}
}
}
static {
persistentCount = PersistentStore.getPersistentObject(0xdec6a67096f833cL);
synchronized (persistentCount) {
if (persistentCount.getContents() == null) {
persistentCount.setContents(new Vector()); //don't know what to do with this?
persistentCount.commit();
}
}
}
private static final class StoreInfo implements Persistable{
private int iconCount;
public StoreInfo(){}
public int getElement(){
return (int)iconCount;
}
public void incElement(){
iconCount++; //persistently increment icon variable
}
public void resetElement(){
iconCount=0; //when user checks application
}
}
上面的代码无法正常工作,因为我在实现持久性部分时遇到了麻烦。如果有人对如何实现这一点有任何想法或意见,任何帮助都会有所帮助。当然还要提前感谢。
答案 0 :(得分:0)
在示例中,他们有一个名为_data
的变量,其中包含StoreInfo
类,因此首先应将StoreInfo
保留在某个变量中。要执行此操作,请在静态初始化程序中执行以下操作:
persistentCount = PersistentStore.getPersistentObject(0xdec6a67096f833cL);
synchronized (persistentCount) {
if (persistentCount.getContents() == null) {
persistentCount.setContents(new StoreInfo());
persistentCount.commit();
}
}
_data = (StoreInfo)persistentCount.getContents();
现在,当您想要更新它并保存到PersistentStore时,您可以使用以下内容:
_data.incElement();
synchronized(persistentCount) {
persistentCount.setContents(_data);
persistentCount.commit();
}
假设您将只拥有一个StoreInfo实例,最好将提交代码放入修饰符方法中,这样您就不会忘记将新值保存到PersistentStore。