im using MultiSelectListPreference and the values save on array..
How can read??
    SharedPreferences pref = PreferenceManager.getDefaultSharedPreferences(this);
    Set<String> a = pref.getStringSet("tabs", null);
    for ( int i = 0; i < a.size(); i++) {
        Log.d("salida", a[i]);
    }
i get this error: The type of the expression must be an array type but it resolved to Set
 
     
    