var functionWrapper= {
clickFunction : function(data, event) {
window.alert("Event triggered");
},
fakeClick : function(data,event) {
//Do nothing
}
};
ko.applyBindings(functionWrapper);
请告诉我,我怎样才能在观众中获得活动?
答案 0 :(得分:1)
如果您使用customRecyclerViewAdapter
,则可以将ActivityInstance
从mainActivity
传递到customRecyclerViewAdapter
的构造函数,而不是可以在嵌套类(View holder)中使用请参阅下面的示例。
/ * customRecyclerviewadapter的构造函数* /
Context rcontext;
public ImageAdapter(Context a)
{
rcontext = a;
}
/ *嵌套类(查看持有者)* /
public class ViewHolder extends RecyclerView.ViewHolder
{
public ViewHolder(View item)
{
/* you can use here */
rcontext;
}
}