gpt4 book ai didi

android - popBackStack() 并在 Adapter 中传递参数

转载 作者:行者123 更新时间:2023-12-01 11:25:39 24 4
gpt4 key购买 nike

我想在 RecyclerView 中单击行时返回到上一个 fragment 。那么如何在我的适配器中调用该函数呢?

 @Override
public void onBindViewHolder(final CountryViewHolder holder, int position) {
String country = countries.get(position);
holder.tvCountrySelection.setText(country);
holder.tvCountrySelection.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
holder.tvCountrySelection.setCompoundDrawablesWithIntrinsicBounds(0, 0, R.drawable.ic_tick_17, 0);
//I want to run popBackStack() here and send String country to previous fragment.
}
});
}

最佳答案

关于android - popBackStack() 并在 Adapter 中传递参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37388646/

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