Home | History | Annotate | Download | only in incallui

Lines Matching refs:Ui

123      * Determines if the current UI state represents a video call.
166 * @param ui The Ui implementation that is now ready to be used.
169 public void onUiReady(VideoCallUi ui) {
170 super.onUiReady(ui);
187 * @param ui The Ui implementation that is no longer ready to be used.
190 public void onUiUnready(VideoCallUi ui) {
191 super.onUiUnready(ui);
214 final VideoCallUi ui = getUi();
216 if (ui == null || mVideoCall == null) {
226 mVideoCall.setPreviewSurface(ui.getPreviewVideoSurface());
228 mVideoCall.setDisplaySurface(ui.getDisplayVideoSurface());
250 final VideoCallUi ui = getUi();
251 if (ui == null || mVideoCall == null) {
363 * Checks to see if the current video state has changed and updates the UI if required.
401 VideoCallUi ui = getUi();
402 if (ui == null) {
406 ui.showVideoUi(true);
414 if (ui.isActivityRestart()) {
424 if (ui.isDisplayVideoSurfaceCreated()) {
425 mVideoCall.setDisplaySurface(ui.getDisplayVideoSurface());
437 VideoCallUi ui = getUi();
438 if (ui == null) {
442 ui.showVideoUi(false);
492 VideoCallUi ui = getUi();
493 if (ui == null) {
512 if (ui.isPreviewVideoSurfaceCreated()) {
514 mVideoCall.setPreviewSurface(ui.getPreviewVideoSurface());
573 VideoCallUi ui = getUi();
574 if (ui == null) {
588 ui.setPreviewSize(width, height);
594 public interface VideoCallUi extends Ui {