GestureDetectorでDeprecatedと警告が出る件
http://stackoverflow.com/questions/12873708/gesturedetector-deprecated-issue
StacOverFlowにありました。
StacOverFlowにありました。
gestureDetector = new GestureDetector(this);
だと警告が出るのを、第一引数にContextを指定するといいとの事です。
そこで、
そこで、
gestureDetector = new GestureDetector(getContext(),this);
とすると警告が出なくなりました。
コメント