Skip to content

Commit fea8da4

Browse files
committed
support swipe up
1 parent deb0754 commit fea8da4

File tree

1 file changed

+3
-15
lines changed

1 file changed

+3
-15
lines changed

app/src/main/java/com/sakebook/android/library/reachability/Reachability.java

+3-15
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,3 @@
1-
/**
2-
* Copyright (C) 2014 Shinya Sakemoto
3-
*
4-
* Licensed under the Apache License, Version 2.0 (the "License");
5-
* you may not use this file except in compliance with the License.
6-
* You may obtain a copy of the License at
7-
*
8-
* http://www.apache.org/licenses/LICENSE-2.0
9-
*
10-
* Unless required by applicable law or agreed to in writing, software
11-
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13-
* See the License for the specific language governing permissions and
14-
* limitations under the License.
15-
*/
161
package com.sakebook.android.library.reachability;
172

183
import android.animation.ObjectAnimator;
@@ -370,6 +355,9 @@ public boolean onTouch(View v, MotionEvent event) {
370355
if ((endY - startY) > THRESHOLD) {
371356
showStatusBar();
372357
}
358+
if ((startY - endY) > THRESHOLD) {
359+
switchBack();
360+
}
373361
}
374362
return false;
375363
}

0 commit comments

Comments
 (0)