我有铃声列表…我通过mysql数据库提供列表。(例如歌曲名称、歌曲URL…)
我通过在我的数据库中添加新项,在列表视图中动态添加产品(铃声),因此除了行图标之外,这些数据都不在我的应用程序中。
这是风景
android - 使用Sharedpreferences存储和检索Listview数据-LMLPHP
如你所见,我有一个书签边框图标,当用户点击它时,它会变成选中的…这就是它的工作原理:

    holder.favImage=(ImageView)v.findViewById(R.id.favImage);
    holder.favImage.setImageResource(product.getFavId());
    holder.favImage.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            Product product = (Product) mDataItems.get(position);
            if(product.faved){
                product.setFavId(R.mipmap.bookmarked);
                sharedPreference.addFavorite(mContext,product);
                product.faved=false;
                }
            else {
                sharedPreference.removeFavorite(mContext,product);
                product.setFavId(R.mipmap.bookmark_border);
                product.faved = true;
                }
             notifyDataSetChanged();
        }
    });

但在我的“收藏夹”选项卡中什么都不会发生。即使书签图标被选中时的状态也不会被保存。
自定义适配器
    public class FunDapter<T> extends BaseAdapter {


    protected List<T> mDataItems;
    protected List<T> mOrigDataItems;
    protected final Context mContext;
    private final int mLayoutResource;
    private final BindDictionary<T> mBindDictionary;

    SharedPreference sharedPreference;

    public FunDapter(Context context, List<T> dataItems, int layoutResource,
                     BindDictionary<T> dictionary) {
      this(context, dataItems, layoutResource, null, dictionary);
    }


    public FunDapter(Context context, List<T> dataItems, int layoutResource,
                     LongExtractor<T> idExtractor, BindDictionary<T> dictionary) {
        this.mContext = context;
        this.mDataItems = dataItems;
        this.mOrigDataItems = dataItems;
        this.mLayoutResource = layoutResource;
        this.mBindDictionary = dictionary;
        sharedPreference = new SharedPreference();
    }



    public void updateData(List<T> dataItems) {
        this.mDataItems = dataItems;
        this.mOrigDataItems = dataItems;
        notifyDataSetChanged();
    }

    @Override
    public int getCount() {
        if (mDataItems == null || mBindDictionary == null) return 0;

        return mDataItems.size();
    }

    @Override
    public T getItem(int position) {
        return mDataItems.get(position);
    }

    @Override
    public long getItemId(int position) {
        if(idExtractor == null) return position;
        else return idExtractor.getLongValue(getItem(position), position);
    }

    @Override
    public View getView(final int position, View convertView, ViewGroup parent) {

        View v = convertView;
        final GenericViewHolder holder;
        if (null == v) {
            LayoutInflater vi =
                    (LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
            v = vi.inflate(mLayoutResource, null);
            holder = new GenericViewHolder();
            holder.root = v;


            //init the sub views and put them in a holder instance
            FunDapterUtils.initViews(v, holder, mBindDictionary);
            v.setTag(holder);
            }else {
            holder = (GenericViewHolder) v.getTag();
            }

        final T item = getItem(position);
        showData(item, holder, position);

    final Product product = (Product) mDataItems.get(position);
    holder.favImage=(ImageView)v.findViewById(R.id.favImage);
    holder.favImage.setImageResource(product.getFavId());
    holder.favImage.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            if(product.faved){
                product.setFavId(R.mipmap.bookmarked);
                sharedPreference.addFavorite(mContext,product);
                product.faved=false;
                }
            else {
                sharedPreference.removeFavorite(mContext,product);
                product.setFavId(R.mipmap.bookmark_border);
                product.faved = true;
                }
             notifyDataSetChanged();
        }
    });


        return v;
    }

}

产品模型类
    @SuppressWarnings("serial")
public class Product implements Serializable {
    @SerializedName("pid")
    public int pid;

    @SerializedName("name")
    public String name;

    @SerializedName("qty")
    public int qty;

    @SerializedName("price")
    public String description;

    @SerializedName("song_url")
    public String song_url;

    @SerializedName("date")
    public String date;


    public boolean paused = true;
    public boolean faved = true;

     private int favId;
    public int getFavId() {
        return favId;}
    public void setFavId(int favId) {
        this.favId = favId;}
}

SharedPreferences类
   public class SharedPreference {

    public static final String PREFS_NAME = "PRODUCT_APP";
    public static final String FAVORITES = "Product_Favorite";

    public SharedPreference() {
        super();
    }

    // This four methods are used for maintaining favorites.
    public void saveFavorites(Context context, List<Product> favorites) {
        SharedPreferences settings;
        Editor editor;
        settings = context.getSharedPreferences(PREFS_NAME,Context.MODE_PRIVATE);
        editor = settings.edit();
        Gson gson = new Gson();
        String jsonFavorites = gson.toJson(favorites);
        editor.putString(FAVORITES, jsonFavorites);
        editor.commit();
    }

    public void addFavorite(Context context, Product product) {
        List<Product> favorites = getFavorites(context);
        if (favorites == null)
            favorites = new ArrayList<Product>();
            favorites.add(product);
            saveFavorites(context, favorites);
    }

    public void removeFavorite(Context context, Product product) {
        ArrayList<Product> favorites = getFavorites(context);
        if (favorites != null) {
            favorites.remove(product);
            saveFavorites(context, favorites);
        }
    }

    public ArrayList<Product> getFavorites(Context context) {
        SharedPreferences settings;
        List<Product> favorites;
        settings = context.getSharedPreferences(PREFS_NAME,Context.MODE_PRIVATE);
        if (settings.contains(FAVORITES)) {
            String jsonFavorites = settings.getString(FAVORITES, null);
            Gson gson = new Gson();
            Product[] favoriteItems = gson.fromJson(jsonFavorites,Product[].class);
            favorites = Arrays.asList(favoriteItems);
            favorites = new ArrayList<Product>(favorites);
        } else
            return null;

        return (ArrayList<Product>) favorites;
    }
}

我在这里呆了几天,你能帮帮我吗?

最佳答案

实际上你的实现对于最爱来说更复杂,我只需要把一个列放入你的数据库,比如name isfavorite,当你按下按钮时默认将0添加到这个列,然后将值0更改为1,但是每次我们没有连接到Internet时,都要使用sqlite数据库,因为sqlite数据库的大小和速度比sharedpreferences要快得多。
但是在这里您不想使用sqlite数据库,所以首先从您的web服务下载json,并且只在用户单击favorite按钮时进行更改,如
点击前json格式:
{unieq_id:“1”,最喜欢的是:“0”}
点击后的JSON格式:
{unieq_id:“1”,最喜欢的是:“1”}
如果是收藏0,则显示非收藏图标,否则显示收藏图标。

10-07 12:30
查看更多