3 回答
TA贡献1869条经验 获得超4个赞
YourAdapter instance = new YourAdapter(context,arrayList,textView);
现在在适配器的构造函数中,您可以访问该文本视图。
你的适配器.java
TextView textView;
YourAdapter(Context context,Arraylist<ModelClass> arraylist,TextView textView)
{
this.textView = textView;
}
现在在适配器中您可以更新 textview 值。
TA贡献1851条经验 获得超5个赞
在您的适配器类中 OnClick RadioButton
View.OnClickListener rbClick = new View.OnClickListener() {
@Override
public void onClick(View v) {
RadioButton checked_rb = (RadioButton) v;
if(lastCheckedRB != null){
lastCheckedRB.setChecked(false);
}
.....
.....
//Create Statis Mathod in ActivityCheckout and Access Hear
ActivityCheckout.updateTextView(String DataUWantToAdd);
}
};
在你的 ActivityCheckout 类中
添加静态 Mathod 不要错过那个
class ActivityCheckout
{
.....
//on create and etc
public static void updateTextView(String DataUWantToUpadate)
{
yourTextViewObject.setText(DataUWantToUpdate);
}
}
添加回答
举报