I have a problem with preferences, some users tell me that screen start blinking and is not possible to stop it and need to reboot. I tryed to eliminate every kind of code in java source (setOnClickListener, setOnChangeListener), I also added some code in onDestroy() to avoid to use setOnChangeListener to check if a value is changed, I was thinking that it could be that, but no results.
I hope someone has an idea.
Thanks
package com.android.reminder;
import com.android.reminder.Reminder.ReminderMetaData;
import android.app.AlarmManager;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteException;
import android.os.Bundle;
import android.preference.PreferenceActivity;
import android.preference.PreferenceManager;
public class MyPreferences extends PreferenceActivity {
String renewOldValue;
String renewNewValue;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
if (MyApplication.cFull)
addPreferencesFromResource (R.xml.preferences);
else
addPreferencesFromResource (R.xml.preferences_lt);
}
@Override
protected void onStart() {
super.onStart();
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
renewOldValue = prefs.getString("renewNotify", "5");
}
@Override
protected void onDestroy() {
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
renewNewValue = prefs.getString("renewNotify", "5");
if (!renewNewValue.equals(renewOldValue))
{
final int REMINDER_ACTIVE = 0;
SQLiteDatabase db;
Cursor cursor;
final String DB_NAME = "dbReminder";
Context context = getBaseContext();
try {
db = context.openOrCreateDatabase(DB_NAME, 0, null);
cursor = db.query(ReminderMetaData.TABLE_NAME,
ReminderMetaData.COLUMNS, ReminderMetaData.EXPIRED + " = " + REMINDER_ACTIVE, null, null, null, null);
cursor.moveToFirst();
while (cursor.isAfterLast() == false) {
Reminder r = new Reminder();
r.id = cursor.getLong(cursor
.getColumnIndex(ReminderMetaData.ID));
r.message = cursor.getString(cursor
.getColumnIndex(ReminderMetaData.MESSAGE));
r.date = cursor.getLong(cursor
.getColumnIndex(ReminderMetaData.DATE));
r.expired = cursor.getInt(cursor
.getColumnIndex(ReminderMetaData.EXPIRED));
r.repeat = cursor.getInt(cursor
.getColumnIndex(ReminderMetaData.REPEAT));
r.type = cursor.getInt(cursor
.getColumnIndex(ReminderMetaData.TYPE));
r.contactid = cursor.getString(cursor
.getColumnIndex(ReminderMetaData.CONTACTID));
r.contactlk = cursor.getString(cursor
.getColumnIndex(ReminderMetaData.CONTACTLK));
Intent i = new Intent(context, AlarmReceiver.class);
i.putExtra("id", r.id);
PendingIntent sender = PendingIntent.getBroadcast(context, r.id.intValue(), i, PendingIntent.FLAG_UPDATE_CURRENT);
Long triggerAtTime = r.date;
AlarmManager am = (AlarmManager)context.getSystemService(Context.ALARM_SERVICE);
String renewNotify = renewNewValue.toString();
Long minToRenew = Long.parseLong(renewNotify) * 60000;
am.setRepeating(AlarmManager.RTC_WAKEUP, triggerAtTime, minToRenew, sender);
cursor.moveToNext();
}
cursor.close();
db.close();
}
catch (SQLiteException e)
{
}
}
super.onDestroy();
}
}
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" android:title="@string/prefTitle" android:order="1">
<ListPreference android:entryValues="@array/Languages" android:entries="@array/LanguagesLabel" android:key="langSelected" android:title="@string/prefSelectLanguage" android:summary="@string/prefRestartLanguage" android:order="1"/>
<PreferenceScreen android:title="@string/prefAlarmTitle" android:order="2">
<RingtonePreference android:key="ringtone" android:enabled="true" android:ringtoneType="notification" android:showDefault="true" android:showSilent="false" android:title="@string/prefRingtone" android:order="1" android:defaultValue="content://settings/system/notification_sound" android:summary="@string/prefDexRingtone"/>
<CheckBoxPreference android:key="alarm" android:order="2" android:title="@string/prefAlarm" android:enabled="true" android:defaultValue="true"/>
<CheckBoxPreference android:key="insistent" android:order="3" android:title="@string/prefInsistent" android:enabled="true" android:defaultValue="false"/>
<CheckBoxPreference android:key="vibration" android:order="4" android:title="@string/prefVibration" android:enabled="true" android:defaultValue="true"/>
</PreferenceScreen>
<PreferenceScreen android:title="@string/prefNotifications" android:order="3">
<CheckBoxPreference android:title="@string/prefSlidingTitle" android:key="displaySliding" android:order="1" android:defaultValue="true" android:summary="@string/prefSlidingDex"/>
<CheckBoxPreference android:summary="@string/prefLandscapeDex" android:title="@string/prefLandscapeTitle" android:key="screenLandscape" android:defaultValue="false" android:order="2"/>
<ListPreference android:key="renewNotify" android:order="3" android:title="@string/prefRenewNotify" android:entries="@array/RenewLabels" android:entryValues="@array/RenewValues" android:summary="@string/prefRenewNotifyDex" android:defaultValue="@string/defalutValue"/>
</PreferenceScreen>
<PreferenceScreen android:title="@string/prefView" android:order="4">
<CheckBoxPreference android:key="divider" android:order="1" android:title="@string/prefDivider" android:enabled="true" android:defaultValue="true" android:summary="@string/prefDexDivider"/>
<CheckBoxPreference android:key="hideExpired" android:title="@string/prefHideExpired" android:summary="@string/prefHideExpiredDex" android:order="2" android:defaultValue="false"/>
<CheckBoxPreference android:order="3" android:key="SaveFilter" android:title="@string/prefSaveFilter" android:defaultValue="false"/>
</PreferenceScreen>
</PreferenceScreen>
