blob: ca663fd12a7c9d5b5e8293d78e47111aab704f06 [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 *
Elliott Hughes3edfa8f2016-02-09 16:12:02 -080048 * <p>A <a href="https://github.com/googlesamples/android-ndk/tree/master/native-activity">sample
49 * native activity</a> is available in the NDK samples.
Dianne Hackborn69969e42010-05-04 11:40:40 -070050 */
Dianne Hackbornd76b67c2010-07-13 17:48:30 -070051public class NativeActivity extends Activity implements SurfaceHolder.Callback2,
52 InputQueue.Callback, OnGlobalLayoutListener {
Dianne Hackborne21d91c62010-10-24 14:56:38 -070053 /**
54 * Optional meta-that can be in the manifest for this component, specifying
55 * the name of the native shared library to load. If not specified,
56 * "main" is used.
57 */
Dianne Hackborn69969e42010-05-04 11:40:40 -070058 public static final String META_DATA_LIB_NAME = "android.app.lib_name";
59
Dianne Hackborne21d91c62010-10-24 14:56:38 -070060 /**
61 * Optional meta-that can be in the manifest for this component, specifying
62 * the name of the main entry point for this native activity in the
63 * {@link #META_DATA_LIB_NAME} native code. If not specified,
64 * "ANativeActivity_onCreate" is used.
65 */
66 public static final String META_DATA_FUNC_NAME = "android.app.func_name";
67
68 private static final String KEY_NATIVE_SAVED_STATE = "android:native_state";
Dianne Hackborn08d5b8f2010-08-04 11:12:40 -070069
Dianne Hackbornd76b67c2010-07-13 17:48:30 -070070 private NativeContentView mNativeContentView;
71 private InputMethodManager mIMM;
72
Ashok Bhat58b8b242014-01-02 16:52:41 +000073 private long mNativeHandle;
Dianne Hackborn69969e42010-05-04 11:40:40 -070074
Dianne Hackborn3c80a4a2010-06-29 19:20:40 -070075 private InputQueue mCurInputQueue;
76 private SurfaceHolder mCurSurfaceHolder;
77
Dianne Hackbornd76b67c2010-07-13 17:48:30 -070078 final int[] mLocation = new int[2];
79 int mLastContentX;
80 int mLastContentY;
81 int mLastContentWidth;
82 int mLastContentHeight;
83
84 private boolean mDispatchingUnhandledKey;
85
Dianne Hackborn3c80a4a2010-06-29 19:20:40 -070086 private boolean mDestroyed;
87
Ashok Bhat58b8b242014-01-02 16:52:41 +000088 private native long loadNativeCode(String path, String funcname, MessageQueue queue,
Dianne Hackborn805fd7e2011-01-16 18:30:29 -080089 String internalDataPath, String obbPath, String externalDataPath, int sdkVersion,
Dimitry Ivanova55c7f12016-02-23 14:25:50 -080090 AssetManager assetMgr, byte[] savedState, ClassLoader classLoader, String libraryPath);
Dmitriy Ivanov048a0db2015-11-15 14:58:36 -080091 private native String getDlError();
Ashok Bhat58b8b242014-01-02 16:52:41 +000092 private native void unloadNativeCode(long handle);
93 private native void onStartNative(long handle);
94 private native void onResumeNative(long handle);
95 private native byte[] onSaveInstanceStateNative(long handle);
96 private native void onPauseNative(long handle);
97 private native void onStopNative(long handle);
98 private native void onConfigurationChangedNative(long handle);
99 private native void onLowMemoryNative(long handle);
100 private native void onWindowFocusChangedNative(long handle, boolean focused);
101 private native void onSurfaceCreatedNative(long handle, Surface surface);
102 private native void onSurfaceChangedNative(long handle, Surface surface,
Dianne Hackborn74323fd2010-05-18 17:56:23 -0700103 int format, int width, int height);
Ashok Bhat58b8b242014-01-02 16:52:41 +0000104 private native void onSurfaceRedrawNeededNative(long handle, Surface surface);
105 private native void onSurfaceDestroyedNative(long handle);
106 private native void onInputQueueCreatedNative(long handle, long queuePtr);
107 private native void onInputQueueDestroyedNative(long handle, long queuePtr);
108 private native void onContentRectChangedNative(long handle, int x, int y, int w, int h);
Dianne Hackbornd76b67c2010-07-13 17:48:30 -0700109
110 static class NativeContentView extends View {
111 NativeActivity mActivity;
112
113 public NativeContentView(Context context) {
114 super(context);
115 }
116
117 public NativeContentView(Context context, AttributeSet attrs) {
118 super(context, attrs);
119 }
120 }
Dianne Hackborn2c6081c2010-07-15 17:44:53 -0700121
Dianne Hackborn69969e42010-05-04 11:40:40 -0700122 @Override
123 protected void onCreate(Bundle savedInstanceState) {
124 String libname = "main";
Dianne Hackborne21d91c62010-10-24 14:56:38 -0700125 String funcname = "ANativeActivity_onCreate";
Dianne Hackborn69969e42010-05-04 11:40:40 -0700126 ActivityInfo ai;
Yohei Yukawa777ef952015-11-25 20:32:24 -0800127
128 mIMM = getSystemService(InputMethodManager.class);
Dianne Hackbornd76b67c2010-07-13 17:48:30 -0700129
Dianne Hackborn74323fd2010-05-18 17:56:23 -0700130 getWindow().takeSurface(this);
Dianne Hackborn1e4b9f32010-06-23 14:10:57 -0700131 getWindow().takeInputQueue(this);
Dianne Hackborn54a181b2010-06-30 18:35:14 -0700132 getWindow().setFormat(PixelFormat.RGB_565);
Dianne Hackbornd76b67c2010-07-13 17:48:30 -0700133 getWindow().setSoftInputMode(
134 WindowManager.LayoutParams.SOFT_INPUT_STATE_UNSPECIFIED
135 | WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);
136
137 mNativeContentView = new NativeContentView(this);
138 mNativeContentView.mActivity = this;
139 setContentView(mNativeContentView);
140 mNativeContentView.requestFocus();
141 mNativeContentView.getViewTreeObserver().addOnGlobalLayoutListener(this);
Dianne Hackborn74323fd2010-05-18 17:56:23 -0700142
Dianne Hackborn69969e42010-05-04 11:40:40 -0700143 try {
144 ai = getPackageManager().getActivityInfo(
145 getIntent().getComponent(), PackageManager.GET_META_DATA);
146 if (ai.metaData != null) {
147 String ln = ai.metaData.getString(META_DATA_LIB_NAME);
148 if (ln != null) libname = ln;
Dianne Hackborne21d91c62010-10-24 14:56:38 -0700149 ln = ai.metaData.getString(META_DATA_FUNC_NAME);
150 if (ln != null) funcname = ln;
Dianne Hackborn69969e42010-05-04 11:40:40 -0700151 }
152 } catch (PackageManager.NameNotFoundException e) {
153 throw new RuntimeException("Error getting activity info", e);
154 }
Dmitriy Ivanov048a0db2015-11-15 14:58:36 -0800155
156 BaseDexClassLoader classLoader = (BaseDexClassLoader) getClassLoader();
157 String path = classLoader.findLibrary(libname);
158
Dianne Hackborn69969e42010-05-04 11:40:40 -0700159 if (path == null) {
Dimitry Ivanovb9c90262016-02-19 14:09:20 -0800160 throw new IllegalArgumentException("Unable to find native library " + libname +
161 " using classloader: " + classLoader.toString());
Dianne Hackborn69969e42010-05-04 11:40:40 -0700162 }
163
Dianne Hackborn08d5b8f2010-08-04 11:12:40 -0700164 byte[] nativeSavedState = savedInstanceState != null
165 ? savedInstanceState.getByteArray(KEY_NATIVE_SAVED_STATE) : null;
166
Dianne Hackborne21d91c62010-10-24 14:56:38 -0700167 mNativeHandle = loadNativeCode(path, funcname, Looper.myQueue(),
Jeff Sharkeye0475c82013-08-15 11:50:02 -0700168 getAbsolutePath(getFilesDir()), getAbsolutePath(getObbDir()),
169 getAbsolutePath(getExternalFilesDir(null)),
Dmitriy Ivanov048a0db2015-11-15 14:58:36 -0800170 Build.VERSION.SDK_INT, getAssets(), nativeSavedState,
Dimitry Ivanova55c7f12016-02-23 14:25:50 -0800171 classLoader, classLoader.getLdLibraryPath());
Jeff Sharkeye0475c82013-08-15 11:50:02 -0700172
Dianne Hackborn69969e42010-05-04 11:40:40 -0700173 if (mNativeHandle == 0) {
Dmitriy Ivanov048a0db2015-11-15 14:58:36 -0800174 throw new UnsatisfiedLinkError(
175 "Unable to load native library \"" + path + "\": " + getDlError());
Dianne Hackborn69969e42010-05-04 11:40:40 -0700176 }
177 super.onCreate(savedInstanceState);
178 }
179
Jeff Sharkeye0475c82013-08-15 11:50:02 -0700180 private static String getAbsolutePath(File file) {
181 return (file != null) ? file.getAbsolutePath() : null;
182 }
183
Dianne Hackborn69969e42010-05-04 11:40:40 -0700184 @Override
185 protected void onDestroy() {
Dianne Hackborn3c80a4a2010-06-29 19:20:40 -0700186 mDestroyed = true;
187 if (mCurSurfaceHolder != null) {
Dianne Hackborn54a181b2010-06-30 18:35:14 -0700188 onSurfaceDestroyedNative(mNativeHandle);
Dianne Hackborn3c80a4a2010-06-29 19:20:40 -0700189 mCurSurfaceHolder = null;
190 }
191 if (mCurInputQueue != null) {
Michael Wrighta44dd262013-04-10 21:12:00 -0700192 onInputQueueDestroyedNative(mNativeHandle, mCurInputQueue.getNativePtr());
Dianne Hackborn3c80a4a2010-06-29 19:20:40 -0700193 mCurInputQueue = null;
194 }
Dianne Hackborn69969e42010-05-04 11:40:40 -0700195 unloadNativeCode(mNativeHandle);
196 super.onDestroy();
197 }
198
199 @Override
Dianne Hackborn69969e42010-05-04 11:40:40 -0700200 protected void onPause() {
201 super.onPause();
202 onPauseNative(mNativeHandle);
203 }
204
205 @Override
206 protected void onResume() {
207 super.onResume();
208 onResumeNative(mNativeHandle);
209 }
210
211 @Override
212 protected void onSaveInstanceState(Bundle outState) {
213 super.onSaveInstanceState(outState);
Dianne Hackborn08d5b8f2010-08-04 11:12:40 -0700214 byte[] state = onSaveInstanceStateNative(mNativeHandle);
215 if (state != null) {
216 outState.putByteArray(KEY_NATIVE_SAVED_STATE, state);
217 }
Dianne Hackborn69969e42010-05-04 11:40:40 -0700218 }
219
220 @Override
221 protected void onStart() {
222 super.onStart();
223 onStartNative(mNativeHandle);
224 }
225
226 @Override
227 protected void onStop() {
228 super.onStop();
229 onStopNative(mNativeHandle);
230 }
231
232 @Override
Dianne Hackborn08d5b8f2010-08-04 11:12:40 -0700233 public void onConfigurationChanged(Configuration newConfig) {
234 super.onConfigurationChanged(newConfig);
235 if (!mDestroyed) {
236 onConfigurationChangedNative(mNativeHandle);
237 }
238 }
239
240 @Override
Dianne Hackborn74323fd2010-05-18 17:56:23 -0700241 public void onLowMemory() {
242 super.onLowMemory();
Dianne Hackborn3c80a4a2010-06-29 19:20:40 -0700243 if (!mDestroyed) {
244 onLowMemoryNative(mNativeHandle);
245 }
Dianne Hackborn74323fd2010-05-18 17:56:23 -0700246 }
247
248 @Override
Dianne Hackborn69969e42010-05-04 11:40:40 -0700249 public void onWindowFocusChanged(boolean hasFocus) {
250 super.onWindowFocusChanged(hasFocus);
Dianne Hackborn3c80a4a2010-06-29 19:20:40 -0700251 if (!mDestroyed) {
252 onWindowFocusChangedNative(mNativeHandle, hasFocus);
253 }
Dianne Hackborn69969e42010-05-04 11:40:40 -0700254 }
Dianne Hackborn74323fd2010-05-18 17:56:23 -0700255
256 public void surfaceCreated(SurfaceHolder holder) {
Dianne Hackborn3c80a4a2010-06-29 19:20:40 -0700257 if (!mDestroyed) {
258 mCurSurfaceHolder = holder;
Dianne Hackborn54a181b2010-06-30 18:35:14 -0700259 onSurfaceCreatedNative(mNativeHandle, holder.getSurface());
Dianne Hackborn3c80a4a2010-06-29 19:20:40 -0700260 }
Dianne Hackborn74323fd2010-05-18 17:56:23 -0700261 }
262
263 public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) {
Dianne Hackborn3c80a4a2010-06-29 19:20:40 -0700264 if (!mDestroyed) {
265 mCurSurfaceHolder = holder;
Dianne Hackborn54a181b2010-06-30 18:35:14 -0700266 onSurfaceChangedNative(mNativeHandle, holder.getSurface(), format, width, height);
Dianne Hackborn3c80a4a2010-06-29 19:20:40 -0700267 }
Dianne Hackborn74323fd2010-05-18 17:56:23 -0700268 }
269
Dianne Hackbornd76b67c2010-07-13 17:48:30 -0700270 public void surfaceRedrawNeeded(SurfaceHolder holder) {
271 if (!mDestroyed) {
272 mCurSurfaceHolder = holder;
273 onSurfaceRedrawNeededNative(mNativeHandle, holder.getSurface());
274 }
275 }
276
Dianne Hackborn74323fd2010-05-18 17:56:23 -0700277 public void surfaceDestroyed(SurfaceHolder holder) {
Dianne Hackborn3c80a4a2010-06-29 19:20:40 -0700278 mCurSurfaceHolder = null;
279 if (!mDestroyed) {
Dianne Hackborn54a181b2010-06-30 18:35:14 -0700280 onSurfaceDestroyedNative(mNativeHandle);
Dianne Hackborn3c80a4a2010-06-29 19:20:40 -0700281 }
Dianne Hackborn74323fd2010-05-18 17:56:23 -0700282 }
Dianne Hackborna95e4cb2010-06-18 18:09:33 -0700283
Dianne Hackborn1e4b9f32010-06-23 14:10:57 -0700284 public void onInputQueueCreated(InputQueue queue) {
Dianne Hackborn3c80a4a2010-06-29 19:20:40 -0700285 if (!mDestroyed) {
286 mCurInputQueue = queue;
Michael Wrighta44dd262013-04-10 21:12:00 -0700287 onInputQueueCreatedNative(mNativeHandle, queue.getNativePtr());
Dianne Hackborn3c80a4a2010-06-29 19:20:40 -0700288 }
Dianne Hackborna95e4cb2010-06-18 18:09:33 -0700289 }
290
Dianne Hackborn1e4b9f32010-06-23 14:10:57 -0700291 public void onInputQueueDestroyed(InputQueue queue) {
Dianne Hackborn3c80a4a2010-06-29 19:20:40 -0700292 if (!mDestroyed) {
Michael Wrighta44dd262013-04-10 21:12:00 -0700293 onInputQueueDestroyedNative(mNativeHandle, queue.getNativePtr());
294 mCurInputQueue = null;
Dianne Hackborn3c80a4a2010-06-29 19:20:40 -0700295 }
296 }
297
Dianne Hackbornd76b67c2010-07-13 17:48:30 -0700298 public void onGlobalLayout() {
299 mNativeContentView.getLocationInWindow(mLocation);
300 int w = mNativeContentView.getWidth();
301 int h = mNativeContentView.getHeight();
302 if (mLocation[0] != mLastContentX || mLocation[1] != mLastContentY
303 || w != mLastContentWidth || h != mLastContentHeight) {
304 mLastContentX = mLocation[0];
305 mLastContentY = mLocation[1];
306 mLastContentWidth = w;
307 mLastContentHeight = h;
308 if (!mDestroyed) {
309 onContentRectChangedNative(mNativeHandle, mLastContentX,
310 mLastContentY, mLastContentWidth, mLastContentHeight);
311 }
312 }
313 }
314
Dianne Hackborn54a181b2010-06-30 18:35:14 -0700315 void setWindowFlags(int flags, int mask) {
316 getWindow().setFlags(flags, mask);
317 }
318
319 void setWindowFormat(int format) {
320 getWindow().setFormat(format);
321 }
Dianne Hackbornd76b67c2010-07-13 17:48:30 -0700322
323 void showIme(int mode) {
324 mIMM.showSoftInput(mNativeContentView, mode);
325 }
326
327 void hideIme(int mode) {
328 mIMM.hideSoftInputFromWindow(mNativeContentView.getWindowToken(), mode);
329 }
Dianne Hackborn69969e42010-05-04 11:40:40 -0700330}