Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a preference activity which is declared as following, it must change preferences in the main activity:

package com.leo.sky.browserfree;

import android.content.SharedPreferences;
import android.os.Bundle;
import android.preference.CheckBoxPreference;
import android.preference.EditTextPreference;
import android.preference.ListPreference;
import android.preference.Preference;
import android.preference.PreferenceActivity;
import android.preference.PreferenceFragment;
import android.preference.PreferenceManager;
import android.widget.Toast;

public class Settings extends PreferenceActivity {

static String pref2;
@Override
 protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    getPreferences(MODE_PRIVATE);
    getFragmentManager().beginTransaction().replace(android.R.id.content,
            new UserPreferencesFragment()).commit();
    SharedPreferences prefs =                      PreferenceManager.getDefaultSharedPreferences(getBaseContext());
    pref2 = prefs.getString("testo", null);
}
}
class UserPreferencesFragment extends PreferenceFragment {




public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            addPreferencesFromResource(R.xml.settings);

            final ListPreference lista =     (ListPreference)getPreferenceManager().findPreference("lista");
            final CheckBoxPreference checkboxPref = (CheckBoxPreference)     getPreferenceManager().findPreference("prova");
            final EditTextPreference pref = (EditTextPreference)     getPreferenceManager().findPreference("testo");

            lista.setOnPreferenceChangeListener(new     Preference.OnPreferenceChangeListener() {
                public boolean onPreferenceChange(Preference preference, Object     newValue) {
                    lista.setEntries(R.array.listArray);
                    lista.setEntryValues(R.array.listValues);
                       final String val = newValue.toString();
                       int index = lista.findIndexOfValue(val);
                       if(index==0){
                           MainActivity.web.getSettings().setMinimumFontSize(30);
                           MainActivity.web.reload();
                       }{
                           if(index==1)
                               MainActivity.web.getSettings().setMinimumFontSize(20);
                       MainActivity.web.reload();
                       }{
                        if(index==2)
                    MainActivity.web.getSettings().setMinimumFontSize(10);
                       MainActivity.web.reload();
                       }

                  return true;
                  }

            });


          checkboxPref.setOnPreferenceChangeListener(new     Preference.OnPreferenceChangeListener() {            
                public boolean onPreferenceChange(Preference preference, Object     newValue) {
                    if(checkboxPref.isChecked()){
                        MainActivity.web.getSettings().setJavaScriptEnabled(true);
                        MainActivity.web.reload();

                            Toast.makeText(getActivity(), "JavaScript Enabled",     TRIM_MEMORY_MODERATE).show();


                    }
                    else{
                        MainActivity.web.getSettings().setJavaScriptEnabled(false);
                        MainActivity.web.reload();
                            Toast.makeText(getActivity(), "JavaScript Disabled",     TRIM_MEMORY_MODERATE).show();
                    }   
                    return true;


                }
                public boolean onPreferenceChange(Preference     preference) {
                    // TODO Auto-generated method stub
                    return true;
                }
            }); 
          pref.setOnPreferenceChangeListener(new          Preference.OnPreferenceChangeListener() {


                public boolean onPreferenceChange(Preference         preference,
                        Object newValue) {



                    return true;
                }

              });



 }

}

But in the listpreference the only code which have no effect in the main activity is this:

final ListPreference lista =         (ListPreference)getPreferenceManager().findPreference("lista");
....
    if(index==0){
     MainActivity.web.getSettings().setMinimumFontSize(30);  
   if(index==1){
      MainActivity.web.getSettings().setMinimumFontSize(20);
   if(index==2){
      MainActivity.web.getSettings().setMinimumFontSize(10);

Here is my array.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
<string-array name="listArray">
<item>Big</item>
<item>Medium</item>
<item>Small</item>
</string-array>
<string-array name="listValues">
<item>30</item>
<item>20</item>
<item>10</item>
</string-array>
</resources>

And here is my preferences.xml

<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
<PreferenceCategory android:title="@string/titolo">
<CheckBoxPreference 
    android:defaultValue="false" 
    android:summary="It disables javascript" 
    android:title="Disable JavaScript" 
    android:key="prova" 
    android:enabled="true" 
    android:selectable="true">
     </CheckBoxPreference>

     <EditTextPreference android:key="testo" 
         android:title="Default URL"
         android:summary="Set the default address"
         android:defaultValue="http://www.google.com">

     </EditTextPreference>

     <ListPreference
         android:key="lista"
         android:title="Set Text dimensions"
         android:defaultValue="15"
         android:entries="@array/listArray"
         android:entryValues="@array/listValues"
         android:enabled="true" 
         >
     </ListPreference>
</PreferenceCategory>
</PreferenceScreen>
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.