本文整理汇总了Java中android.view.View.scrollBy方法的典型用法代码示例。如果您正苦于以下问题:Java View.scrollBy方法的具体用法?Java View.scrollBy怎么用?Java View.scrollBy使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类android.view.View
的用法示例。
在下文中一共展示了View.scrollBy方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: scrollCompat
import android.view.View; //导入方法依赖的package包/类
public static boolean scrollCompat(View view, float deltaY) {
if (view != null) {
if ((view instanceof WebView)
|| (view instanceof HorizontalScrollView)) {
view.scrollBy((int) deltaY, 0);
} else {
try {
if (view instanceof RecyclerView) {
view.scrollBy((int) deltaY, 0);
return true;
}
} catch (NoClassDefFoundError e) {
//ignore exception
}
}
}
return false;
}
示例2: scrollAViewBy
import android.view.View; //导入方法依赖的package包/类
public static void scrollAViewBy(View view, int height) {
if (view instanceof RecyclerView) ((RecyclerView) view).smoothScrollBy(0, height);
else if (view instanceof ScrollView) ((ScrollView) view).smoothScrollBy(0, height);
else if (view instanceof AbsListView) ((AbsListView) view).smoothScrollBy(height, 150);
else {
try {
Method method = view.getClass().getDeclaredMethod("smoothScrollBy", Integer.class, Integer.class);
method.invoke(view, 0, height);
} catch (Exception e) {
view.scrollBy(0, height);
}
}
}
示例3: scrollBy
import android.view.View; //导入方法依赖的package包/类
/**
* 滚动dx, dy
*
* @param dx
* @param dy
* @return
*/
public UDView scrollBy(final int dx, final int dy) {
final View view = getView();
if (view != null) {
view.scrollBy(dx, dy);
}
return this;
}
示例4: scrollAViewBy
import android.view.View; //导入方法依赖的package包/类
public static void scrollAViewBy(View view, int height) {
if (view instanceof RecyclerView) ((RecyclerView) view).scrollBy(0, height);
else if (view instanceof ScrollView) ((ScrollView) view).smoothScrollBy(0, height);
else if (view instanceof AbsListView) ((AbsListView) view).smoothScrollBy(height, 0);
else {
try {
Method method = view.getClass().getDeclaredMethod("smoothScrollBy", Integer.class, Integer.class);
method.invoke(view, 0, height);
} catch (Exception e) {
view.scrollBy(0, height);
}
}
}