Home
last modified time | relevance | path

Searched refs:scrollNeeded (Results 1 – 1 of 1) sorted by relevance

/external/setupdesign/main/src/com/google/android/setupdesign/template/
DRequireScrollMixin.java53 void onRequireScrollStateChanged(boolean scrollNeeded); in onRequireScrollStateChanged() argument
142 public void onRequireScrollStateChanged(boolean scrollNeeded) {
143 navigationBar.getMoreButton().setVisibility(scrollNeeded ? View.VISIBLE : View.GONE);
144 navigationBar.getNextButton().setVisibility(scrollNeeded ? View.GONE : View.VISIBLE);
183 public void onRequireScrollStateChanged(boolean scrollNeeded) {
184 button.setText(scrollNeeded ? moreText : nextText);
241 public void onRequireScrollStateChanged(boolean scrollNeeded) {
242 button.setText(scrollNeeded ? moreText : nextText);
289 private void postScrollStateChange(final boolean scrollNeeded) {
295 listener.onRequireScrollStateChanged(scrollNeeded);