Home
last modified time | relevance | path

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

/packages/modules/AdServices/sdksandbox/tests/manual-test-apps/SdkSandboxClient/src/com/android/sdksandboxclient/
DAppVideoView.java71 final String videoUrl = extras == null ? null : extras.getString(VIDEO_URL_KEY); in onCreate() local
72 if (videoUrl != null) { in onCreate()
73 mVideoUrlEdit.setText(videoUrl); in onCreate()
74 startVideo(videoUrl); in onCreate()
102 final String videoUrl = mVideoUrlEdit.getText().toString(); in registerStartAppVideoButton()
103 startVideo(videoUrl); in registerStartAppVideoButton()
139 private void startVideo(String videoUrl) { in startVideo() argument
140 mCurrentMediaItem = MediaItem.fromUri(Uri.parse(videoUrl)); in startVideo()
DBannerOptions.java89 String videoUrl, in BannerOptions() argument
95 mVideoUrl = videoUrl; in BannerOptions()
DMainActivity.java288 final String videoUrl = extras.getString(VIDEO_URL_KEY); in handleExtras() local
289 mSharedPreferences.edit().putString("banner_video_url", videoUrl).apply(); in handleExtras()
/packages/modules/AdServices/sdksandbox/tests/manual-test-apps/SdkSandboxCodeProvider/src/com/android/sdksandboxcode_1/
DPlayerViewProvider.java50 public View createPlayerView(Context windowContext, String videoUrl) { in createPlayerView() argument
56 final PlayerState playerState = new PlayerState(windowContext, logger, videoUrl); in createPlayerView()
106 private PlayerState(Context context, PlayerViewLogger logger, String videoUrl) { in PlayerState() argument
109 mMediaItem = MediaItem.fromUri(Uri.parse(videoUrl)); in PlayerState()
DSdkApi.java171 final String videoUrl = params.getString(VIDEO_URL_KEY, null); in startActivity() local
177 if (videoUrl != null) { in startActivity()
178 mediaView = createVideoAd(activity, videoUrl); in startActivity()
215 private VideoView createVideoAd(Activity activity, String videoUrl) { in createVideoAd() argument
217 videoView.setVideoURI(Uri.parse(videoUrl)); in createVideoAd()
DSampleSandboxedSdkProvider.java88 String videoUrl = params.getString(VIDEO_URL_KEY, ""); in getView() local
89 return mPlayerViewProvider.createPlayerView(windowContext, videoUrl); in getView()