摘要:
当按下一个按钮时,有两种事件促发的方式,一种是通过回调,一种是通过事件监听。 回调: xml中: 只要设置android:onclick="回调函数名字" '主函数中重写回调函数即可。 事件监听: 第一种: 通过创建一个类,该类实现监听的接口: public class mylistener imp 阅读全文
摘要:
两个活动之间的跳转要通过intent来进行,intent跳转分为隐式的和显示的。 首先xml中定义Button,通过按下按钮实现回调,在回调函数中进行相应intent设置。 <Button android:id="@+id/btn1" android:layout_width="wrap_conte 阅读全文