本文整理了Java中android.widget.ScrollView.getMaxScrollAmount()
方法的一些代码示例,展示了ScrollView.getMaxScrollAmount()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ScrollView.getMaxScrollAmount()
方法的具体详情如下:
包路径:android.widget.ScrollView
类名称:ScrollView
方法名:getMaxScrollAmount
暂无
代码示例来源:origin: square/assertj-android
public ScrollViewAssert hasMaxScrollAmount(int amount) {
isNotNull();
int actualAmount = actual.getMaxScrollAmount();
assertThat(actualAmount) //
.overridingErrorMessage("Expected maximum scroll amount <%s> but was <%s>.", amount,
actualAmount) //
.isEqualTo(amount);
return this;
}
代码示例来源:origin: com.squareup.assertj/assertj-android
public ScrollViewAssert hasMaxScrollAmount(int amount) {
isNotNull();
int actualAmount = actual.getMaxScrollAmount();
assertThat(actualAmount) //
.overridingErrorMessage("Expected maximum scroll amount <%s> but was <%s>.", amount,
actualAmount) //
.isEqualTo(amount);
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;
}
}
内容来源于网络,如有侵权,请联系作者删除!