Loading core/java/android/widget/RemoteViews.java +5 −1 Original line number Diff line number Diff line Loading @@ -763,7 +763,11 @@ public class RemoteViews implements Parcelable, Filter { method = methods.get(mPair); if (method == null) { try { if (paramType == null) { method = klass.getMethod(methodName); } else { method = klass.getMethod(methodName, paramType); } } catch (NoSuchMethodException ex) { throw new ActionException("view: " + klass.getName() + " doesn't have method: " + methodName + getParameters(paramType)); Loading Loading
core/java/android/widget/RemoteViews.java +5 −1 Original line number Diff line number Diff line Loading @@ -763,7 +763,11 @@ public class RemoteViews implements Parcelable, Filter { method = methods.get(mPair); if (method == null) { try { if (paramType == null) { method = klass.getMethod(methodName); } else { method = klass.getMethod(methodName, paramType); } } catch (NoSuchMethodException ex) { throw new ActionException("view: " + klass.getName() + " doesn't have method: " + methodName + getParameters(paramType)); Loading