Skip to content

Commit 3930177

Browse files
author
pokercc
committed
Fix OnScaleChangedListener method visible problem.
1 parent 94892a1 commit 3930177

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

photoview/src/main/java/com/github/chrisbanes/photoview/OnScaleChangedListener.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*/
77
public abstract class OnScaleChangedListener {
88

9-
void onScaleStart() {
9+
public void onScaleStart() {
1010
}
1111

1212
/**
@@ -16,8 +16,8 @@ void onScaleStart() {
1616
* @param focusX focal point X position
1717
* @param focusY focal point Y position
1818
*/
19-
abstract void onScaleChange(float scaleFactor, float focusX, float focusY);
19+
public abstract void onScaleChange(float scaleFactor, float focusX, float focusY);
2020

21-
void onScaleEnd() {
21+
public void onScaleEnd() {
2222
}
2323
}

0 commit comments

Comments
 (0)