android.view.View#SCROLL_AXIS_VERTICAL源码实例Demo

下面列出了android.view.View#SCROLL_AXIS_VERTICAL 实例代码,或者点击链接到github查看源代码,也可以在右侧发表评论。

源代码1 项目: android-proguards   文件: BottomSheet.java
@Override
public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) {
    if ((nestedScrollAxes & View.SCROLL_AXIS_VERTICAL) != 0) {
        isNestedScrolling = true;
        nestedScrollInitialTop = sheet.getTop();
        return true;
    }
    return false;
}
 
源代码2 项目: MyBlogDemo   文件: BottomSheet.java
@Override
public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) {
    if ((nestedScrollAxes & View.SCROLL_AXIS_VERTICAL) != 0) {
        isNestedScrolling = true;
        nestedScrollInitialTop = sheet.getTop();
        return true;
    }
    return false;
}
 
源代码3 项目: weather   文件: ElasticDragDismissFrameLayout.java
@Override
public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) {
  return (nestedScrollAxes & View.SCROLL_AXIS_VERTICAL) != 0;
}
 
源代码4 项目: Hillffair17   文件: VerticalScrollingBehavior.java
@Override
public boolean onStartNestedScroll(CoordinatorLayout coordinatorLayout, V child, View directTargetChild, View target, int nestedScrollAxes) {
    return (nestedScrollAxes & View.SCROLL_AXIS_VERTICAL) != 0;
}
 
源代码5 项目: JD-Test   文件: VerticalScrollingBehavior.java
@Override
public boolean onStartNestedScroll(CoordinatorLayout coordinatorLayout, V child, View directTargetChild, View target, int nestedScrollAxes) {
    return (nestedScrollAxes & View.SCROLL_AXIS_VERTICAL) != 0;
}
 
源代码6 项目: Nimbus   文件: VerticalScrollingBehavior.java
@Override
public boolean onStartNestedScroll(CoordinatorLayout coordinatorLayout, V child, View directTargetChild, View target, int nestedScrollAxes) {
    return (nestedScrollAxes & View.SCROLL_AXIS_VERTICAL) != 0;
}
 
@Override
public boolean onStartNestedScroll(CoordinatorLayout coordinatorLayout, V child, View directTargetChild, View target, int nestedScrollAxes) {
    return (nestedScrollAxes & View.SCROLL_AXIS_VERTICAL) != 0;
}
 
源代码8 项目: BottomBar   文件: VerticalScrollingBehavior.java
@Override
public boolean onStartNestedScroll(CoordinatorLayout coordinatorLayout, V child, View directTargetChild, View target, int nestedScrollAxes) {
    return (nestedScrollAxes & View.SCROLL_AXIS_VERTICAL) != 0;
}
 
@TargetApi(Build.VERSION_CODES.LOLLIPOP)
@Override
public boolean onStartNestedScroll(CoordinatorLayout coordinatorLayout, V child, View directTargetChild, View target, int nestedScrollAxes) {
    return (nestedScrollAxes & View.SCROLL_AXIS_VERTICAL) != 0;
}
 
源代码10 项目: materialup   文件: ElasticDragDismissFrameLayout.java
@Override
public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) {
    return (nestedScrollAxes & View.SCROLL_AXIS_VERTICAL) != 0;
}
 
@Override
public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) {
    return (nestedScrollAxes & View.SCROLL_AXIS_VERTICAL) != 0;
}
 
@Override
public boolean onStartNestedScroll(@NonNull CoordinatorLayout coordinatorLayout, @NonNull V child, @NonNull View directTargetChild, @NonNull View target, int nestedScrollAxes) {
    return (nestedScrollAxes & View.SCROLL_AXIS_VERTICAL) != 0;
}
 
源代码13 项目: android-bottomsheet   文件: ResolverDrawerLayout.java
@Override
public boolean onStartNestedScroll(View child, View target, int nestedScrollAxes) {
    return (nestedScrollAxes & View.SCROLL_AXIS_VERTICAL) != 0;
}
 
 方法所在类
 同类方法