Home
last modified time | relevance | path

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

/external/exoplayer/tree/library/ui/src/main/java/com/google/android/exoplayer2/ui/
DPlayerControlView.java305 private int showTimeoutMs; field in PlayerControlView
340 showTimeoutMs = DEFAULT_SHOW_TIMEOUT_MS; in PlayerControlView()
356 showTimeoutMs = a.getInt(R.styleable.PlayerControlView_show_timeout, showTimeoutMs); in PlayerControlView()
629 return showTimeoutMs; in getShowTimeoutMs()
639 public void setShowTimeoutMs(int showTimeoutMs) { in setShowTimeoutMs() argument
640 this.showTimeoutMs = showTimeoutMs; in setShowTimeoutMs()
774 if (showTimeoutMs > 0) { in hideAfterTimeout()
775 hideAtMs = SystemClock.uptimeMillis() + showTimeoutMs; in hideAfterTimeout()
777 postDelayed(hideAction, showTimeoutMs); in hideAfterTimeout()