最新回答 / 没轮的自行车
不会被终止,而且这个super.方法()。有时候还需要利用其回传的值来执行其下面的几行代码。比如super.dispatchTouchEvent(event),它可以回传一个boolean值(假设是dte),那么根据dte是true还是false,可以知道是否有子View消费了事件,如果是,接下来怎么做,如果不是云云。
2016-09-01
最新回答 / 慕尼黑2980719
我这边也是应该不能作为类函数来调用的,作为对象的函数可以正常使用,如下:public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { String mText = buttonView.getText().toString(); if(isChecked){ Log.i("log", "已选中"+mText); }else{ ...
2016-08-31