gpt4 book ai didi

android - 使用共享首选项从列表中保存复选框状态

转载 作者:行者123 更新时间:2023-11-29 00:12:15 24 4
gpt4 key购买 nike

我问了一个关于如何使用文本文件保存复选框状态的问题,但建议使用共享首选项。我在使用文本文件之前尝试过这种方法,但遇到了同样的问题 - 列表中的复选框似乎是随机选中和取消选中的。

我的应用程序显示设备上当前安装的应用程序列表,它显示应用程序的标题、图标和一个复选框。如果我选中其中一项并向下滚动并再次返回,它通常会取消选中而其他项目会随机选中。我正在尝试获取它,以便从共享首选项加载复选框状态,并在用户手动选中该框时将其保存。

这是 ListView 自定义适配器的代码:

    public class AppDetailsAdapter extends BaseAdapter {

private List<AppDetails> data;
private Context context;


public AppDetailsAdapter(Context context, List<AppDetails> data) {
this.context = context;
this.data = data;
}


@Override
public View getView(int position, View convertView, ViewGroup parent) {
View view = convertView;

if (view == null) {
LayoutInflater vi = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
view = vi.inflate(R.layout.custom_row_layout, null);
}

ImageView icon = (ImageView) view.findViewById(R.id.icon);
TextView text = (TextView) view.findViewById(R.id.text);
final CheckBox checkBox = (CheckBox) view.findViewById(R.id.checkBox);
final AppDetails item = data.get(position);

text.setText(item.name);
icon.setImageDrawable(item.icon);

SharedPreferences settings = context.getSharedPreferences("data",Context.MODE_PRIVATE);
boolean Checked = settings.getBoolean(item.name, false);
checkBox.setChecked(Checked);

checkBox.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {

@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
// Handle your conditions here
if(checkBox.isChecked()==true){

SharedPreferences settings = context.getSharedPreferences("data", Context.MODE_PRIVATE);
settings.edit().putBoolean(item.name,true).commit();
Toast.makeText(context,"You selected "+item.name, Toast.LENGTH_SHORT).show();
}
else {
SharedPreferences settings = context.getSharedPreferences("data", Context.MODE_PRIVATE);
settings.edit().putBoolean(item.name,false).commit();
Toast.makeText(context,"You deselected "+item.name, Toast.LENGTH_SHORT).show();
}




}
});


return view;
}

最佳答案

这是因为 View 回收而发生的。

你能试试一件事吗:
而不是这个

   if (view == null) {
LayoutInflater vi = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
view = vi.inflate(R.layout.custom_row_layout, null);
}

随便写

  LayoutInflater vi = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
view = vi.inflate(R.layout.custom_row_layout, null);

再次运行。

关于android - 使用共享首选项从列表中保存复选框状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29395371/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com