blob: ef836fe70e1c9fa30634a044443adf539e77c3b9 [file] [log] [blame]
Owen Linf9a0a432011-08-17 22:07:43 +08001/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.gallery3d.app;
18
19import com.android.gallery3d.R;
20
Ray Chendcb265c2011-08-30 12:06:17 +080021import android.app.ActionBar;
Owen Linf9a0a432011-08-17 22:07:43 +080022import android.app.Activity;
23import android.content.Intent;
24import android.content.pm.ActivityInfo;
25import android.database.Cursor;
26import android.media.AudioManager;
27import android.os.Bundle;
28import android.provider.MediaStore;
29import android.provider.MediaStore.Video.VideoColumns;
Chih-Chung Changbb7d7b92011-09-21 15:38:35 +080030import android.view.MenuItem;
Owen Linf9a0a432011-08-17 22:07:43 +080031import android.view.View;
32import android.view.Window;
33import android.view.WindowManager;
34
35/**
36 * This activity plays a video from a specified URI.
37 */
38public class MovieActivity extends Activity {
39 @SuppressWarnings("unused")
40 private static final String TAG = "MovieActivity";
41
42 private MoviePlayer mPlayer;
43 private boolean mFinishOnCompletion;
44
45 @Override
46 public void onCreate(Bundle savedInstanceState) {
47 super.onCreate(savedInstanceState);
48
49 requestWindowFeature(Window.FEATURE_ACTION_BAR);
50 requestWindowFeature(Window.FEATURE_ACTION_BAR_OVERLAY);
51
52 setContentView(R.layout.movie_view);
53 View rootView = findViewById(R.id.root);
54 Intent intent = getIntent();
Chih-Chung Changbb7d7b92011-09-21 15:38:35 +080055 initializeActionBar(intent);
Owen Lin540e4692011-09-14 19:49:03 +080056 mPlayer = new MoviePlayer(rootView, this, intent.getData(), savedInstanceState) {
Owen Linf9a0a432011-08-17 22:07:43 +080057 @Override
58 public void onCompletion() {
59 if (mFinishOnCompletion) {
60 finish();
61 }
62 }
63 };
64 if (intent.hasExtra(MediaStore.EXTRA_SCREEN_ORIENTATION)) {
65 int orientation = intent.getIntExtra(
66 MediaStore.EXTRA_SCREEN_ORIENTATION,
67 ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
68 if (orientation != getRequestedOrientation()) {
69 setRequestedOrientation(orientation);
70 }
71 }
72 mFinishOnCompletion = intent.getBooleanExtra(MediaStore.EXTRA_FINISH_ON_COMPLETION, true);
73 Window win = getWindow();
74 WindowManager.LayoutParams winParams = win.getAttributes();
75 winParams.buttonBrightness = WindowManager.LayoutParams.BRIGHTNESS_OVERRIDE_OFF;
Chih-Chung Chang81760122011-09-27 16:50:16 +080076 winParams.flags |= WindowManager.LayoutParams.FLAG_FULLSCREEN;
Owen Linf9a0a432011-08-17 22:07:43 +080077 win.setAttributes(winParams);
Owen Linf9a0a432011-08-17 22:07:43 +080078 }
79
Chih-Chung Changbb7d7b92011-09-21 15:38:35 +080080 private void initializeActionBar(Intent intent) {
81 ActionBar actionBar = getActionBar();
82 actionBar.setDisplayOptions(ActionBar.DISPLAY_HOME_AS_UP,
83 ActionBar.DISPLAY_HOME_AS_UP);
Owen Linf9a0a432011-08-17 22:07:43 +080084 String title = intent.getStringExtra(Intent.EXTRA_TITLE);
85 if (title == null) {
86 Cursor cursor = null;
87 try {
88 cursor = getContentResolver().query(intent.getData(),
89 new String[] {VideoColumns.TITLE}, null, null, null);
90 if (cursor != null && cursor.moveToNext()) {
91 title = cursor.getString(0);
92 }
93 } catch (Throwable t) {
94 Log.w(TAG, "cannot get title from: " + intent.getDataString(), t);
95 } finally {
96 if (cursor != null) cursor.close();
97 }
98 }
Chih-Chung Changbb7d7b92011-09-21 15:38:35 +080099 if (title != null) actionBar.setTitle(title);
100 }
101
102 @Override
103 public boolean onOptionsItemSelected(MenuItem item) {
104 if (item.getItemId() == android.R.id.home) {
105 finish();
106 return true;
107 }
108 return false;
Owen Linf9a0a432011-08-17 22:07:43 +0800109 }
110
111 @Override
112 public void onStart() {
113 ((AudioManager) getSystemService(AUDIO_SERVICE))
114 .requestAudioFocus(null, AudioManager.STREAM_MUSIC,
115 AudioManager.AUDIOFOCUS_GAIN_TRANSIENT);
116 super.onStart();
117 }
118
119 @Override
120 protected void onStop() {
121 ((AudioManager) getSystemService(AUDIO_SERVICE))
122 .abandonAudioFocus(null);
123 super.onStop();
124 }
125
126 @Override
127 public void onPause() {
128 mPlayer.onPause();
129 super.onPause();
130 }
131
132 @Override
133 public void onResume() {
134 mPlayer.onResume();
135 super.onResume();
136 }
137
138 @Override
Owen Lin540e4692011-09-14 19:49:03 +0800139 public void onSaveInstanceState(Bundle outState) {
140 super.onSaveInstanceState(outState);
141 mPlayer.onSaveInstanceState(outState);
142 }
143
144 @Override
Owen Linf9a0a432011-08-17 22:07:43 +0800145 public void onDestroy() {
146 mPlayer.onDestroy();
147 super.onDestroy();
148 }
149}