blob: 3c7f48ba580c0569b3bdfa5865e3a48a64fecf2c [file] [log] [blame]
Jeff Brownf9e989d2013-04-04 23:04:03 -07001/*
2 * Copyright (C) 2010 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 */
Jeff Sharkey1abdb712013-08-11 16:28:14 -070016
Dianne Hackborn69969e42010-05-04 11:40:40 -070017package android.app;
18
Dianne Hackbornd76b67c2010-07-13 17:48:30 -070019import android.content.Context;
Dianne Hackborn69969e42010-05-04 11:40:40 -070020import android.content.pm.ActivityInfo;
Dianne Hackborn69969e42010-05-04 11:40:40 -070021import android.content.pm.PackageManager;
Christopher Tate6cce32b2010-07-12 18:21:36 -070022import android.content.res.AssetManager;
Dianne Hackborn08d5b8f2010-08-04 11:12:40 -070023import android.content.res.Configuration;
Dianne Hackborn54a181b2010-06-30 18:35:14 -070024import android.graphics.PixelFormat;
Dianne Hackborn68267412010-07-02 18:52:01 -070025import android.os.Build;
Dianne Hackborn69969e42010-05-04 11:40:40 -070026import android.os.Bundle;
Dianne Hackborn3c80a4a2010-06-29 19:20:40 -070027import android.os.Looper;
28import android.os.MessageQueue;
Dianne Hackbornd76b67c2010-07-13 17:48:30 -070029import android.util.AttributeSet;
Dianne Hackborn1e4b9f32010-06-23 14:10:57 -070030import android.view.InputQueue;
Dianne Hackborn54a181b2010-06-30 18:35:14 -070031import android.view.Surface;
Dianne Hackborn74323fd2010-05-18 17:56:23 -070032import android.view.SurfaceHolder;
Dianne Hackborn3c80a4a2010-06-29 19:20:40 -070033import android.view.View;
Dianne Hackbornd76b67c2010-07-13 17:48:30 -070034import android.view.ViewTreeObserver.OnGlobalLayoutListener;
Jeff Sharkey1abdb712013-08-11 16:28:14 -070035import android.view.WindowManager;
Dianne Hackbornd76b67c2010-07-13 17:48:30 -070036import android.view.inputmethod.InputMethodManager;
Dianne Hackborn69969e42010-05-04 11:40:40 -070037
Dmitriy Ivanov048a0db2015-11-15 14:58:36 -080038import dalvik.system.BaseDexClassLoader;
39
Dianne Hackborn69969e42010-05-04 11:40:40 -070040import java.io.File;
41
42/**
43 * Convenience for implementing an activity that will be implemented
Dianne Hackborn08d5b8f2010-08-04 11:12:40 -070044 * purely in native code. That is, a game (or game-like thing). There
45 * is no need to derive from this class; you can simply declare it in your
46 * manifest, and use the NDK APIs from there.
47 *
48 * <p>A typical manifest would look like:
49 *
50 * {@sample development/ndk/platforms/android-9/samples/native-activity/AndroidManifest.xml
51 * manifest}
52 *
53 * <p>A very simple example of native code that is run by NativeActivity
54 * follows. This reads input events from the user and uses OpenGLES to
55 * draw into the native activity's window.
56 *
57 * {@sample development/ndk/platforms/android-9/samples/native-activity/jni/main.c all}
Dianne Hackborn69969e42010-05-04 11:40:40 -070058 */
Dianne Hackbornd76b67c2010-07-13 17:48:30 -070059public class NativeActivity extends Activity implements SurfaceHolder.Callback2,
60 InputQueue.Callback, OnGlobalLayoutListener {
Dianne Hackborne21d91c62010-10-24 14:56:38 -070061 /**
62 * Optional meta-that can be in the manifest for this component, specifying
63 * the name of the native shared library to load. If not specified,
64 * "main" is used.
65 */
Dianne Hackborn69969e42010-05-04 11:40:40 -070066 public static final String META_DATA_LIB_NAME = "android.app.lib_name";
67
Dianne Hackborne21d91c62010-10-24 14:56:38 -070068 /**
69 * Optional meta-that can be in the manifest for this component, specifying
70 * the name of the main entry point for this native activity in the
71 * {@link #META_DATA_LIB_NAME} native code. If not specified,
72 * "ANativeActivity_onCreate" is used.
73 */
74 public static final String META_DATA_FUNC_NAME = "android.app.func_name";
75
76 private static final String KEY_NATIVE_SAVED_STATE = "android:native_state";
Dianne Hackborn08d5b8f2010-08-04 11:12:40 -070077
Dianne Hackbornd76b67c2010-07-13 17:48:30 -070078 private NativeContentView mNativeContentView;
79 private InputMethodManager mIMM;
80
Ashok Bhat58b8b242014-01-02 16:52:41 +000081 private long mNativeHandle;
Dianne Hackborn69969e42010-05-04 11:40:40 -070082
Dianne Hackborn3c80a4a2010-06-29 19:20:40 -070083 private InputQueue mCurInputQueue;
84 private SurfaceHolder mCurSurfaceHolder;
85
Dianne Hackbornd76b67c2010-07-13 17:48:30 -070086 final int[] mLocation = new int[2];
87 int mLastContentX;
88 int mLastContentY;
89 int mLastContentWidth;
90 int mLastContentHeight;
91
92 private boolean mDispatchingUnhandledKey;
93
Dianne Hackborn3c80a4a2010-06-29 19:20:40 -070094 private boolean mDestroyed;
95
Ashok Bhat58b8b242014-01-02 16:52:41 +000096 private native long loadNativeCode(String path, String funcname, MessageQueue queue,
Dianne Hackborn805fd7e2011-01-16 18:30:29 -080097 String internalDataPath, String obbPath, String externalDataPath, int sdkVersion,
Dmitriy Ivanov048a0db2015-11-15 14:58:36 -080098 AssetManager assetMgr, byte[] savedState, ClassLoader classLoader, String libraryPath,
99 String isolationPath);
100 private native String getDlError();
Ashok Bhat58b8b242014-01-02 16:52:41 +0000101 private native void unloadNativeCode(long handle);
102 private native void onStartNative(long handle);
103 private native void onResumeNative(long handle);
104 private native byte[] onSaveInstanceStateNative(long handle);
105 private native void onPauseNative(long handle);
106 private native void onStopNative(long handle);
107 private native void onConfigurationChangedNative(long handle);
108 private native void onLowMemoryNative(long handle);
109 private native void onWindowFocusChangedNative(long handle, boolean focused);
110 private native void onSurfaceCreatedNative(long handle, Surface surface);
111 private native void onSurfaceChangedNative(long handle, Surface surface,
Dianne Hackborn74323fd2010-05-18 17:56:23 -0700112 int format, int width, int height);
Ashok Bhat58b8b242014-01-02 16:52:41 +0000113 private native void onSurfaceRedrawNeededNative(long handle, Surface surface);
114 private native void onSurfaceDestroyedNative(long handle);
115 private native void onInputQueueCreatedNative(long handle, long queuePtr);
116 private native void onInputQueueDestroyedNative(long handle, long queuePtr);
117 private native void onContentRectChangedNative(long handle, int x, int y, int w, int h);
Dianne Hackbornd76b67c2010-07-13 17:48:30 -0700118
119 static class NativeContentView extends View {
120 NativeActivity mActivity;
121
122 public NativeContentView(Context context) {
123 super(context);
124 }
125
126 public NativeContentView(Context context, AttributeSet attrs) {
127 super(context, attrs);
128 }
129 }
Dianne Hackborn2c6081c2010-07-15 17:44:53 -0700130
Dianne Hackborn69969e42010-05-04 11:40:40 -0700131 @Override
132 protected void onCreate(Bundle savedInstanceState) {
133 String libname = "main";
Dianne Hackborne21d91c62010-10-24 14:56:38 -0700134 String funcname = "ANativeActivity_onCreate";
Dianne Hackborn69969e42010-05-04 11:40:40 -0700135 ActivityInfo ai;
Yohei Yukawa777ef952015-11-25 20:32:24 -0800136
137 mIMM = getSystemService(InputMethodManager.class);
Dianne Hackbornd76b67c2010-07-13 17:48:30 -0700138
Dianne Hackborn74323fd2010-05-18 17:56:23 -0700139 getWindow().takeSurface(this);
Dianne Hackborn1e4b9f32010-06-23 14:10:57 -0700140 getWindow().takeInputQueue(this);
Dianne Hackborn54a181b2010-06-30 18:35:14 -0700141 getWindow().setFormat(PixelFormat.RGB_565);
Dianne Hackbornd76b67c2010-07-13 17:48:30 -0700142 getWindow().setSoftInputMode(
143 WindowManager.LayoutParams.SOFT_INPUT_STATE_UNSPECIFIED
144 | WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);
145
146 mNativeContentView = new NativeContentView(this);
147 mNativeContentView.mActivity = this;
148 setContentView(mNativeContentView);
149 mNativeContentView.requestFocus();
150 mNativeContentView.getViewTreeObserver().addOnGlobalLayoutListener(this);
Dianne Hackborn74323fd2010-05-18 17:56:23 -0700151
Dianne Hackborn69969e42010-05-04 11:40:40 -0700152 try {
153 ai = getPackageManager().getActivityInfo(
154 getIntent().getComponent(), PackageManager.GET_META_DATA);
155 if (ai.metaData != null) {
156 String ln = ai.metaData.getString(META_DATA_LIB_NAME);
157 if (ln != null) libname = ln;
Dianne Hackborne21d91c62010-10-24 14:56:38 -0700158 ln = ai.metaData.getString(META_DATA_FUNC_NAME);
159 if (ln != null) funcname = ln;
Dianne Hackborn69969e42010-05-04 11:40:40 -0700160 }
161 } catch (PackageManager.NameNotFoundException e) {
162 throw new RuntimeException("Error getting activity info", e);
163 }
Dmitriy Ivanov048a0db2015-11-15 14:58:36 -0800164
165 BaseDexClassLoader classLoader = (BaseDexClassLoader) getClassLoader();
166 String path = classLoader.findLibrary(libname);
167
Dianne Hackborn69969e42010-05-04 11:40:40 -0700168 if (path == null) {
Dimitry Ivanovb9c90262016-02-19 14:09:20 -0800169 throw new IllegalArgumentException("Unable to find native library " + libname +
170 " using classloader: " + classLoader.toString());
Dianne Hackborn69969e42010-05-04 11:40:40 -0700171 }
172
Dianne Hackborn08d5b8f2010-08-04 11:12:40 -0700173 byte[] nativeSavedState = savedInstanceState != null
174 ? savedInstanceState.getByteArray(KEY_NATIVE_SAVED_STATE) : null;
175
Dianne Hackborne21d91c62010-10-24 14:56:38 -0700176 mNativeHandle = loadNativeCode(path, funcname, Looper.myQueue(),
Jeff Sharkeye0475c82013-08-15 11:50:02 -0700177 getAbsolutePath(getFilesDir()), getAbsolutePath(getObbDir()),
178 getAbsolutePath(getExternalFilesDir(null)),
Dmitriy Ivanov048a0db2015-11-15 14:58:36 -0800179 Build.VERSION.SDK_INT, getAssets(), nativeSavedState,
180 classLoader, classLoader.getLdLibraryPath(),
181 classLoader.getLibraryPermittedPath());
Jeff Sharkeye0475c82013-08-15 11:50:02 -0700182
Dianne Hackborn69969e42010-05-04 11:40:40 -0700183 if (mNativeHandle == 0) {
Dmitriy Ivanov048a0db2015-11-15 14:58:36 -0800184 throw new UnsatisfiedLinkError(
185 "Unable to load native library \"" + path + "\": " + getDlError());
Dianne Hackborn69969e42010-05-04 11:40:40 -0700186 }
187 super.onCreate(savedInstanceState);
188 }
189
Jeff Sharkeye0475c82013-08-15 11:50:02 -0700190 private static String getAbsolutePath(File file) {
191 return (file != null) ? file.getAbsolutePath() : null;
192 }
193
Dianne Hackborn69969e42010-05-04 11:40:40 -0700194 @Override
195 protected void onDestroy() {
Dianne Hackborn3c80a4a2010-06-29 19:20:40 -0700196 mDestroyed = true;
197 if (mCurSurfaceHolder != null) {
Dianne Hackborn54a181b2010-06-30 18:35:14 -0700198 onSurfaceDestroyedNative(mNativeHandle);
Dianne Hackborn3c80a4a2010-06-29 19:20:40 -0700199 mCurSurfaceHolder = null;
200 }
201 if (mCurInputQueue != null) {
Michael Wrighta44dd262013-04-10 21:12:00 -0700202 onInputQueueDestroyedNative(mNativeHandle, mCurInputQueue.getNativePtr());
Dianne Hackborn3c80a4a2010-06-29 19:20:40 -0700203 mCurInputQueue = null;
204 }
Dianne Hackborn69969e42010-05-04 11:40:40 -0700205 unloadNativeCode(mNativeHandle);
206 super.onDestroy();
207 }
208
209 @Override
Dianne Hackborn69969e42010-05-04 11:40:40 -0700210 protected void onPause() {
211 super.onPause();
212 onPauseNative(mNativeHandle);
213 }
214
215 @Override
216 protected void onResume() {
217 super.onResume();
218 onResumeNative(mNativeHandle);
219 }
220
221 @Override
222 protected void onSaveInstanceState(Bundle outState) {
223 super.onSaveInstanceState(outState);
Dianne Hackborn08d5b8f2010-08-04 11:12:40 -0700224 byte[] state = onSaveInstanceStateNative(mNativeHandle);
225 if (state != null) {
226 outState.putByteArray(KEY_NATIVE_SAVED_STATE, state);
227 }
Dianne Hackborn69969e42010-05-04 11:40:40 -0700228 }
229
230 @Override
231 protected void onStart() {
232 super.onStart();
233 onStartNative(mNativeHandle);
234 }
235
236 @Override
237 protected void onStop() {
238 super.onStop();
239 onStopNative(mNativeHandle);
240 }
241
242 @Override
Dianne Hackborn08d5b8f2010-08-04 11:12:40 -0700243 public void onConfigurationChanged(Configuration newConfig) {
244 super.onConfigurationChanged(newConfig);
245 if (!mDestroyed) {
246 onConfigurationChangedNative(mNativeHandle);
247 }
248 }
249
250 @Override
Dianne Hackborn74323fd2010-05-18 17:56:23 -0700251 public void onLowMemory() {
252 super.onLowMemory();
Dianne Hackborn3c80a4a2010-06-29 19:20:40 -0700253 if (!mDestroyed) {
254 onLowMemoryNative(mNativeHandle);
255 }
Dianne Hackborn74323fd2010-05-18 17:56:23 -0700256 }
257
258 @Override
Dianne Hackborn69969e42010-05-04 11:40:40 -0700259 public void onWindowFocusChanged(boolean hasFocus) {
260 super.onWindowFocusChanged(hasFocus);
Dianne Hackborn3c80a4a2010-06-29 19:20:40 -0700261 if (!mDestroyed) {
262 onWindowFocusChangedNative(mNativeHandle, hasFocus);
263 }
Dianne Hackborn69969e42010-05-04 11:40:40 -0700264 }
Dianne Hackborn74323fd2010-05-18 17:56:23 -0700265
266 public void surfaceCreated(SurfaceHolder holder) {
Dianne Hackborn3c80a4a2010-06-29 19:20:40 -0700267 if (!mDestroyed) {
268 mCurSurfaceHolder = holder;
Dianne Hackborn54a181b2010-06-30 18:35:14 -0700269 onSurfaceCreatedNative(mNativeHandle, holder.getSurface());
Dianne Hackborn3c80a4a2010-06-29 19:20:40 -0700270 }
Dianne Hackborn74323fd2010-05-18 17:56:23 -0700271 }
272
273 public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) {
Dianne Hackborn3c80a4a2010-06-29 19:20:40 -0700274 if (!mDestroyed) {
275 mCurSurfaceHolder = holder;
Dianne Hackborn54a181b2010-06-30 18:35:14 -0700276 onSurfaceChangedNative(mNativeHandle, holder.getSurface(), format, width, height);
Dianne Hackborn3c80a4a2010-06-29 19:20:40 -0700277 }
Dianne Hackborn74323fd2010-05-18 17:56:23 -0700278 }
279
Dianne Hackbornd76b67c2010-07-13 17:48:30 -0700280 public void surfaceRedrawNeeded(SurfaceHolder holder) {
281 if (!mDestroyed) {
282 mCurSurfaceHolder = holder;
283 onSurfaceRedrawNeededNative(mNativeHandle, holder.getSurface());
284 }
285 }
286
Dianne Hackborn74323fd2010-05-18 17:56:23 -0700287 public void surfaceDestroyed(SurfaceHolder holder) {
Dianne Hackborn3c80a4a2010-06-29 19:20:40 -0700288 mCurSurfaceHolder = null;
289 if (!mDestroyed) {
Dianne Hackborn54a181b2010-06-30 18:35:14 -0700290 onSurfaceDestroyedNative(mNativeHandle);
Dianne Hackborn3c80a4a2010-06-29 19:20:40 -0700291 }
Dianne Hackborn74323fd2010-05-18 17:56:23 -0700292 }
Dianne Hackborna95e4cb2010-06-18 18:09:33 -0700293
Dianne Hackborn1e4b9f32010-06-23 14:10:57 -0700294 public void onInputQueueCreated(InputQueue queue) {
Dianne Hackborn3c80a4a2010-06-29 19:20:40 -0700295 if (!mDestroyed) {
296 mCurInputQueue = queue;
Michael Wrighta44dd262013-04-10 21:12:00 -0700297 onInputQueueCreatedNative(mNativeHandle, queue.getNativePtr());
Dianne Hackborn3c80a4a2010-06-29 19:20:40 -0700298 }
Dianne Hackborna95e4cb2010-06-18 18:09:33 -0700299 }
300
Dianne Hackborn1e4b9f32010-06-23 14:10:57 -0700301 public void onInputQueueDestroyed(InputQueue queue) {
Dianne Hackborn3c80a4a2010-06-29 19:20:40 -0700302 if (!mDestroyed) {
Michael Wrighta44dd262013-04-10 21:12:00 -0700303 onInputQueueDestroyedNative(mNativeHandle, queue.getNativePtr());
304 mCurInputQueue = null;
Dianne Hackborn3c80a4a2010-06-29 19:20:40 -0700305 }
306 }
307
Dianne Hackbornd76b67c2010-07-13 17:48:30 -0700308 public void onGlobalLayout() {
309 mNativeContentView.getLocationInWindow(mLocation);
310 int w = mNativeContentView.getWidth();
311 int h = mNativeContentView.getHeight();
312 if (mLocation[0] != mLastContentX || mLocation[1] != mLastContentY
313 || w != mLastContentWidth || h != mLastContentHeight) {
314 mLastContentX = mLocation[0];
315 mLastContentY = mLocation[1];
316 mLastContentWidth = w;
317 mLastContentHeight = h;
318 if (!mDestroyed) {
319 onContentRectChangedNative(mNativeHandle, mLastContentX,
320 mLastContentY, mLastContentWidth, mLastContentHeight);
321 }
322 }
323 }
324
Dianne Hackborn54a181b2010-06-30 18:35:14 -0700325 void setWindowFlags(int flags, int mask) {
326 getWindow().setFlags(flags, mask);
327 }
328
329 void setWindowFormat(int format) {
330 getWindow().setFormat(format);
331 }
Dianne Hackbornd76b67c2010-07-13 17:48:30 -0700332
333 void showIme(int mode) {
334 mIMM.showSoftInput(mNativeContentView, mode);
335 }
336
337 void hideIme(int mode) {
338 mIMM.hideSoftInputFromWindow(mNativeContentView.getWindowToken(), mode);
339 }
Dianne Hackborn69969e42010-05-04 11:40:40 -0700340}