5
@Override
public void onPause()
{
    super.onPause();
    save(notes.itemSelected);
}
@Override
public void onResume()
{
    super.onResume();
    notes.itemSelected.clear();
    notes.itemSelected = load();

}
@Override
public void onRestart()
{
    super.onRestart();
    notes.itemSelected.clear();
    notes.itemSelected = load();

}

private void save(final ArrayList<String> isChecked) {
SharedPreferences sharedPreferences = getPreferences(Context.MODE_PRIVATE);
SharedPreferences.Editor editor = sharedPreferences.edit();
 for(Integer i = 0; i < isChecked.size(); i++)
 {
     editor.putString(i.toString(), isChecked.get(i));
 }
editor.commit();
}

private ArrayList<String> load() {
SharedPreferences sharedPreferences = getPreferences(Context.MODE_PRIVATE);
    ArrayList<String> reChecked = new ArrayList<String>();
    for(Integer i = 0; i < notes.getCount(); i++)
    {
        String s= i.toString();
        Log.e(TAG, s);
        reChecked.add(i, sharedPreferences.getString(s, "empty"));
    }
    return reChecked;
}

这是我在上面的代码中使用的我的自定义适配器,它的实例名为 notes。

public class IconAdapter extends BaseAdapter
{
private Activity activity;
private Object[] data;
private ArrayList<HashMap<String,String>> listItems;
public static LayoutInflater inflater = null;
private PackageManager pm;
public ArrayList<Boolean> itemChecked = new ArrayList<Boolean>();
public ArrayList<String> itemSelected = new ArrayList<String>();
public ArrayList<CheckBox> ctv = new ArrayList<CheckBox>();
//TextView textView;
CheckBox cb;
//ImageView imageView;
public CompleteTaskManager ctm = new CompleteTaskManager();

public IconAdapter(Activity a, ArrayList<HashMap<String,String>> items)
{
    activity = a;
    listItems = items;
    data = items.toArray();
    inflater = (LayoutInflater)activity.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    pm = a.getPackageManager();


    for(int i = 0; i < items.size(); i++)
    {
        itemChecked.add(i,false);
    }


    for(int i = 0; i < items.size(); i++)
    {
        itemSelected.add(i, " ");
    }
     for(int i = 0; i < items.size(); i++)
    {
        cb  = new CheckBox(a);
        ctv.add(i,cb);
    }
}

public int getCount() {
    return listItems.size();
}

public Object getItem(int position) {
    return position;
}

public long getItemId(int position) {
    return position;
}

public static class ViewHolder{
    public TextView textView;
    public ImageView imageView;
    public CheckBox checkBox;
}

public View getView(final int position, View convertView, ViewGroup parent)
{
    View row = convertView;
    final ViewHolder holder;
    if(convertView==null)
    {
        row = inflater.inflate(R.layout.item, parent, false);
        holder = new ViewHolder();
        holder.textView = (TextView)row.findViewById(R.id.text1);
        holder.checkBox = (CheckBox)row.findViewById(R.id.check);
        holder.imageView = (ImageView)row.findViewById(R.id.image);
        row.setTag(holder);
    }
    else
    {
        holder = (ViewHolder)row.getTag();

    }

    String s = data[position].toString();
    String[] tokens = s.split(",");
    String[] mToken = tokens[0].split("=");
    String taskName = mToken[1];
    holder.textView.setText(taskName);
    String[] mTokens = tokens[1].split("=");
    final String pkgName =  mTokens[1].substring(0, (mTokens[1].length() - 1));

    holder.checkBox.setTag(position);
    holder.checkBox.setChecked(itemChecked.get(position));
    /*for(int i = 0; i < itemSelected.length; i++)
    {
        if(itemSelected[i].equals(pkgName))
        {
            holder.checkBox.setChecked(true);
        }
    }*/
    ctv.set(position,holder.checkBox);
    holder.checkBox.setOnCheckedChangeListener(new OnCheckedChangeListener()
    {
        public void onCheckedChanged(CompoundButton button, boolean b) {
            Integer posClicked = (Integer)button.getTag();
            if(b)
            {
                itemChecked.set(posClicked, b);
                itemSelected.set(posClicked, pkgName);
            }
            else
            {
                itemChecked.set(posClicked, b);
                itemSelected.set(posClicked, " ");
            }
        }
    });

   holder.checkBox.setChecked(itemChecked.get(position));

    try{
        Drawable icon =   pm.getApplicationIcon(pkgName);
        holder.imageView.setImageDrawable(icon);
    }
    catch (PackageManager.NameNotFoundException ne)
    {

    }
     row.setId(position);
     return row;
}

public boolean isChecked(int position)
{
    return itemChecked.get(position);
}
public String getPkgName(int position)
{
    return itemSelected.get(position);
}
public void removeItem(int position)
{
    listItems.remove(position);
}

}

谁能告诉我为什么我在reChecked.add(i, sharedPreferences.getString(s, "empty"));. 我的意思是奇怪的是它告诉我我正在将布尔值转换为字符串但是如何????我什至没有在这段代码中的任何地方使用布尔值。

笔记。- notes.itemSelected 是一个字符串类型的 ArrayList。

请帮忙。

4

3 回答 3

3

其实我知道为什么我会得到ClassCastException。首先,我们认为不是 MAC OSX 是导致此异常的原因。我刚刚发现为什么会发生这个异常。

让我解释一下发生了什么。在存储类型之前ArrayList,我使用相同的循环String保存了一个 ArrayList类型,因此这意味着名称为 i.toString() 的键已经被占用,并且我正在调用我的方法,因为我无法运行我的应用程序而从未调用过该方法由于此异常,在设备或模拟器上,因此保存的密钥永远不会被覆盖。当我弄清楚时,我只是将键名更改为(只是一个随机的)并砰它停止抛出异常。Booleanfor()save()onPause()j+"0"

PS Exception 在那里,因为该密钥已被使用。

我希望它能帮助其他面临或将来可能面临同样情况的人。

@Roflcoptr 和 @Durga 我非常感谢你们的帮助,非常感谢。

谢谢。

于 2011-04-20T18:45:17.103 回答
3

ClassCastException当您没有正确地类型转换数据类型时,将发生A。我已经更正了您的保存方法:

private void save(final ArrayList<String> isChecked) {
    SharedPreferences sharedPreferences = getPreferences(Context.MODE_PRIVATE);
    SharedPreferences.Editor editor = sharedPreferences.edit();
    for(Integer i = 0; i < isChecked.size(); i++)
    {
        editor.putString(i+"", isChecked.get(i));
    }
    editor.commit();
}

同样,您还应该更改加载方法中的代码...

于 2011-04-19T11:36:16.357 回答
1

原因必须是您有一个共享首选项,该键不是字符串。

文档说在这种情况下会抛出 ClassCastException :

于 2011-04-19T10:47:41.277 回答