本文整理了Java中android.widget.ScrollView.isSmoothScrollingEnabled()
方法的一些代码示例,展示了ScrollView.isSmoothScrollingEnabled()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ScrollView.isSmoothScrollingEnabled()
方法的具体详情如下:
包路径:android.widget.ScrollView
类名称:ScrollView
方法名:isSmoothScrollingEnabled
暂无
代码示例来源:origin: square/assertj-android
public ScrollViewAssert hasSmoothScrollDisabled() {
isNotNull();
assertThat(actual.isSmoothScrollingEnabled()) //
.overridingErrorMessage("Expected smooth scroll to be disabled but was enabled.") //
.isFalse();
return this;
}
}
代码示例来源:origin: square/assertj-android
public ScrollViewAssert hasSmoothScrollEnabled() {
isNotNull();
assertThat(actual.isSmoothScrollingEnabled()) //
.overridingErrorMessage("Expected smooth scroll to be enabled but was disabled.") //
.isTrue();
return this;
}
代码示例来源:origin: com.squareup.assertj/assertj-android
public ScrollViewAssert hasSmoothScrollEnabled() {
isNotNull();
assertThat(actual.isSmoothScrollingEnabled()) //
.overridingErrorMessage("Expected smooth scroll to be enabled but was disabled.") //
.isTrue();
return this;
}
代码示例来源:origin: com.squareup.assertj/assertj-android
public ScrollViewAssert hasSmoothScrollDisabled() {
isNotNull();
assertThat(actual.isSmoothScrollingEnabled()) //
.overridingErrorMessage("Expected smooth scroll to be disabled but was enabled.") //
.isFalse();
return this;
}
}
代码示例来源:origin: jbruchanov/AnUitor
@Override
protected HashMap<String, Object> fillValues(View v, HashMap<String, Object> data, HashMap<String, Object> parentData) {
super.fillValues(v, data, parentData);
ScrollView sv = (ScrollView) v;
data.put("MaxScrollAmount", sv.getMaxScrollAmount());
data.put("IsFillViewport", sv.isFillViewport());
data.put("IsSmoothScrolling", sv.isSmoothScrollingEnabled());
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.ICE_CREAM_SANDWICH) {
data.put("DelayChildPressedState", sv.shouldDelayChildPressedState());
}
return data;
}
}
内容来源于网络,如有侵权,请联系作者删除!