Git Product home page Git Product logo

Comments (3)

ClownMonkeys avatar ClownMonkeys commented on September 27, 2024 1

rootView.setOnClickListener(v -> {
if (onReloadEvent(context, rootView)) {
return;
}
if (onReloadListener != null) {
onReloadListener.onReload(v);
}
});
在第一次点击之后才注册了 按钮的点击事件
//将Callback添加到当前视图时的回调,View为当前Callback的布局View
@OverRide
public void onAttach(Context context, View view) {
super.onAttach(context, view);
(view.findViewById(R.id.tv_reload)).setOnClickListener(v -> {
Log.d("token-2", "onReloadEvent: " + System.currentTimeMillis());
onReloadListener.onReload(v);//去重试
});
}

from loadsir.

caolinxing avatar caolinxing commented on September 27, 2024

一样

from loadsir.

caolinxing avatar caolinxing commented on September 27, 2024

解决方案 在这里使用点击事件
loadService.setCallBack(EmptyCallback.class, new Transport() {
@OverRide
public void order(Context context, View view) {
Button btn= (TextView) view.findViewById(R.id.btn);
btn.setOnClickListener(new View.OnClickListener() {
@OverRide
public void onClick(View v) {
Toast.makeText(context.getApplicationContext(), "It's your gift! :p", Toast.LENGTH_SHORT).show();
}
});
}
});

from loadsir.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.