添加到收藏夹以进行新活动

时间:2018-10-22 11:40:39

标签: android favorites

我正在开发一个报价应用程序..该应用程序在名片视图(回收者视图)中包含著名的报价和人名。.每个名片视图都包含一个复选框..我想要做的是..每当用户单击时特定报价卡的复选框。.我需要显示一个吐司.. 保存到收藏夹 ..,然后将复选框背景更改为另一张图片( newimg )。用户再次 单击要显示的吐司的复选框。作为已删除的收藏夹 ...,并且复选框背景图片应为默认值。。因此,如何显示用户在单独活动中标记的所有收藏夹报价。.我是android的新手。.我没有找到用于我的目的的参考。

MainActivity.java

public class MainActivity extends AppCompatActivity {

    //recyclerview objects
    private RecyclerView recyclerView;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        String[] AuthorNames = new String[]{"Navagio Beach", "Anse Source d'Argent Beach", "As Catedrais Beach",
                "La Concha Beach", "Bondi Beach", "Nissi Beach"};

        String[] QuotesGuide = new String[]{"https://www.tripadvisor.com.my/Attraction_Review-g7777607-" +
                "d671779-Reviews-Navagio_Beach_Shipwreck_Beach-Anafonitria_Zakynthos_Ionian_Islands.html",
                "https://www.tripadvisor.com.my/Attraction_Review-g477968-d637885-Reviews-Anse_Source_D_Argent" +
                        "-La_Digue_Island.html",
                "https://www.tripadvisor.com.my/Attraction_Review-g609028-d1547522-Reviews-As_Catedrais_Beach-Ribadeo_" +
                        "Province_of_Lugo_Galicia.html",
                "https://www.tripadvisor.com.my/Attraction_Review-g187457-d675885-Reviews-La_Concha_Beach-San_Sebastian" +
                        "_Donostia_Province_of_Guipuzcoa_Basque_Country.html",
                "https://www.tripadvisor.com.my/Attraction_Review-g255060-d257354-Reviews-Bondi_Beach-Sydney_" +
                        "New_South_Wales.html",
                "https://www.tripadvisor.com.my/Attraction_Review-g262055-d1519581-Reviews-Nissi_Beach-Ayia_" +
                        "Napa_Famagusta_District.html"};

        RecyclerView myrv = findViewById(R.id.recyclerView);
        MyRecycleViewAdapter myAdapter = new MyRecycleViewAdapter( AuthorNames , QuotesGuide , MainActivity.this);
        myrv.setLayoutManager(new LinearLayoutManager(this));
        myrv.setAdapter(myAdapter);

        }}

MyQuote.java

public class MyQuote {
private String author;
private String quotedesc;
private int isLiked = 0;
//constructor initializing values
public MyQuote(String author, String quotedesc) {
    this.quotedesc = quotedesc;
    this.author = author;
}
//getters
public String getAuthor() {
    return author;
}
public int getIsLiked(){return isLiked;}
public String getQuotedesc() {
    return quotedesc;
}

public void setIsLiked(int isLiked) {
    this.isLiked = isLiked;
}

}

MyReclerViewadapter.java

public class MyRecycleViewAdapter extends RecyclerView.Adapter<MyRecycleViewAdapter.ViewHolder>{
private MyQuote myQuote;
    private String[] AuthorNames;
    private String[] QuotesGuide;
    private Context mCtx;

    public MyRecycleViewAdapter(String[] authorNames, String[] quotesGuide, Context mCtx) {
        AuthorNames = authorNames;
        QuotesGuide = quotesGuide;
        this.mCtx = mCtx;
    }

    @Override
    public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
        View v = LayoutInflater.from(parent.getContext())
                .inflate(R.layout.sample_quotecards, parent, false);


        return new ViewHolder(v);
    }

    @Override
    public void onBindViewHolder(final MyRecycleViewAdapter.ViewHolder myholder, final int position) {
        myholder.tv_author.setText(AuthorNames[position]);
        myholder.tv_quote.setText(QuotesGuide[position]);

            myholder.im_favlike.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
            @Override
            public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
                if (isChecked) {
                    //Show "Saved to favourite" toast
                    Toast.makeText(mCtx, " quote saved to favorites",
                            Toast.LENGTH_LONG).show();
                } else {
                    //Show "Removed from favourite"

                    Toast.makeText(mCtx, " quote removed from favorites",
                            Toast.LENGTH_LONG).show();
                }


            }


        });


        // share button of a recycler cardview
        myholder.buttonViewOption.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {


                Intent intent = new Intent(Intent.ACTION_SEND);
                intent.putExtra(Intent.EXTRA_TEXT, "share this quote"
                        + AuthorNames[myholder.getAdapterPosition()] +
                        "\nHere is the link to the full review: " + QuotesGuide[myholder.
                        getAdapterPosition()]);
                intent.setType("text/plain");
                mCtx.startActivity(Intent.createChooser(intent, "share this quote"));


            }
        });
    }


    @Override
    public int getItemCount() {
        return AuthorNames.length;
    }


    public class ViewHolder extends RecyclerView.ViewHolder {

        public TextView tv_author;
        public  CheckBox im_favlike;
        public TextView tv_quote;
        public ImageButton buttonViewOption;

        public ViewHolder(View itemView) {
            super(itemView);

            im_favlike = itemView.findViewById(R.id.likeimg);
            tv_author= itemView.findViewById(R.id.author_title);
            tv_quote= itemView.findViewById(R.id.quote_text);
            buttonViewOption = itemView.findViewById(R.id.imageViewOptions);
        }
    }
}
  

我想做的是:

     
      
  1. 每当我单击最喜欢的(chekbox)..复选框图像正在更改..然后在背面单击它,则默认为默认(未选中)..并且工作正常。   但问题..是我不明白如何保存这些复选框   值...当用户退出应用程序并再次打开应用程序时,我需要   保持收藏夹..复选框的值..

  2.   
  3. 如何存储所有收藏夹(报价卡)...由用户在单独的活动中标记(选中)。.

  4.   
     

我是android新手。.我不知道共享首选项..任何人都可以   逐步详细解释..我该怎么办..这对我有很大帮助..

enter image description here

2 个答案:

答案 0 :(得分:2)

查看此示例项目

https://github.com/saini2sandeep/Favourite.git

用于展示“保存至收藏夹”和“从收藏夹移出”的烤面包 您可以这样:

//假设likeButtonCB是您的复选框,并且您必须在其上设置一个侦听器,如下代码所示:

 likeButtonCB.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
            @Override
            public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
                        if (isChecked) {
                           //Show "Saved to favourite" toast
                        } else {
                           //Show "Removed from favourite" toast
                        }
            }
        });

现在要在单击时更改“赞”按钮图像,必须制作一个类似以下的可绘制文件: 您可以根据自己的名字命名,我将其命名为“ like_button_background” 这里的“ ic_like_heart_button_color”是喜欢绘制的按钮图像,“ ic_like_heart_button_empty”是不同的图像。

  <?xml version="1.0" encoding="utf-8"?>
   <selector xmlns:android="http://schemas.android.com/apk/res/android">
   <item android:drawable="@drawable/ic_like_heart_button_color" 
   android:state_checked="true" />
   <item android:drawable="@drawable/ic_like_heart_button_empty" />

使用以下XML代码在您的复选框背景中添加此文件:

<CheckBox
        android:id="@+id/like_button_cb"
        android:layout_width="32dp"
        android:layout_height="32dp"
        android:layout_marginStart="@dimen/margin_left_gen_16"
        android:background="@drawable/like_button_background"
        android:button="@null"
        android:gravity="center"
        android:padding="@dimen/padding_gen_4"
        android:textSize="@dimen/tv_gen_16"
        android:theme="@style/checkBoxStyle"
        android:visibility="visible" />

这将解决您的前两个问题。 要保存单个卡的类似信息,您必须在模型类“ int isLiked = 0;”中再维护一个字段。在模型类中,并据此可以在填充UI时更新点赞按钮的状态。

您可以这样做: 例如,故事是您的模型,然后在填充卡数据的同时在适配器中执行此代码。

 if (story.getIsLiked() == 1) {
            likeButtonCB.setChecked(true);
        } else {
            likeButtonCB.setChecked(false);
        }

答案 1 :(得分:0)

据我了解,如果选中了收藏夹,您希望将数据保存在共享的首选项中。为此,您应该了解SharedPrefernces。

点击此链接可以将数据保存在共享首选项中。 Android Shared preferences example

现在,根据您的要求,您要保存模型类的列表,即  如果已选中“收藏夹”按钮,则我的报价列表

按照此步骤将列表保存在SharedPreferences中。 Save ArrayList to SharedPreferences

现在回到问题所在,我们需要保存并从共享首选项中获取列表。 为简便起见,我将创建三种方法,一种用于在首选项中启动 MyQuote 列表,第二种用于获取已保存的 MyQuote 列表,最后一种用于更新已保存的列表。 MyQuote

Gson gson = new Gson();


// create an empty list of MyQuote
public void initializeMyQuoteList(){
List<MyQuote> quoteList = new ArrayList<MyQuote>();
String jsonText = gson.toJson(quoteList);
prefsEditor.putString("MYQUOTE_LIST", jsonText);
prefsEditor.apply();
}


//getting quote list
public List<MyQuote> getQuoteList(){
 Type type = new TypeToken<List<MyQuote>>() {
    }.getType();
    return gson.fromJson(preferenceManager.getString("MYQUOTE_LIST",
            null), type);
}


//updating saved quote list
public void updateQuoteList(MyQuote quote){
 List<MyQuote> quoteList = getQuoteList();
quoteList.add(quote);
 String jsonText = gson.toJson(quoteList);
 prefsEditor.putString("MYQUOTE_LIST", jsonText);
 prefsEditor.apply();
}

创建活动后,只要单击收藏夹按钮,便会通过调用 initializeMyQuoteList()初始化空列表,以通过将MyQuote添加到已保存的列表来更新列表。列表,即通过调用 updateQuoteList(quote),在单击该项目时在此处传递 MyQuote 对象。

现在,我们已经保存了所有报价,只需在新活动中调用 getQuoteList()即可获取已保存的 MyQuote列表的列表。