Back to project page dynamic-load-apk.
The source code is released under:
Apache License
If you think the Android project dynamic-load-apk listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Copyright (C) 2014 singwhatiwanna(???) <singwhatiwanna@gmail.com> *// ww w .j a v a2s .co m * collaborator:??,???? * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.ryg.dynamicload; import android.content.Intent; import android.content.res.AssetManager; import android.content.res.Resources; import android.content.res.Resources.Theme; import android.os.Bundle; import android.support.v4.app.FragmentActivity; import android.view.KeyEvent; import android.view.Menu; import android.view.MenuItem; import android.view.MotionEvent; import android.view.WindowManager.LayoutParams; import com.ryg.dynamicload.internal.DLPluginManager; import com.ryg.dynamicload.internal.DLProxyImpl; import com.ryg.dynamicload.internal.DLProxyImpl.DLProxy; public class DLProxyFragmentActivity extends FragmentActivity implements DLProxy { protected DLPlugin mRemoteActivity; private DLProxyImpl impl = new DLProxyImpl(this); private DLPluginManager mPluginManager; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); impl.onCreate(getIntent()); } @Override public void attach(DLPlugin remoteActivity, DLPluginManager pluginManager) { mRemoteActivity = remoteActivity; mPluginManager = pluginManager; } @Override public AssetManager getAssets() { return impl.getAssets() == null ? super.getAssets() : impl.getAssets(); } @Override public Resources getResources() { return impl.getResources() == null ? super.getResources() : impl.getResources(); } @Override public Theme getTheme() { return impl.getTheme() == null ? super.getTheme() : impl.getTheme(); } @Override public ClassLoader getClassLoader() { return impl.getClassLoader(); } @Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { mRemoteActivity.onActivityResult(requestCode, resultCode, data); super.onActivityResult(requestCode, resultCode, data); } @Override protected void onStart() { mRemoteActivity.onStart(); super.onStart(); } @Override protected void onRestart() { mRemoteActivity.onRestart(); super.onRestart(); } @Override protected void onResume() { mRemoteActivity.onResume(); super.onResume(); } @Override protected void onPause() { mRemoteActivity.onPause(); super.onPause(); } @Override protected void onStop() { mRemoteActivity.onStop(); super.onStop(); } @Override protected void onDestroy() { mRemoteActivity.onDestroy(); super.onDestroy(); } @Override protected void onSaveInstanceState(Bundle outState) { mRemoteActivity.onSaveInstanceState(outState); super.onSaveInstanceState(outState); } @Override protected void onRestoreInstanceState(Bundle savedInstanceState) { mRemoteActivity.onRestoreInstanceState(savedInstanceState); super.onRestoreInstanceState(savedInstanceState); } @Override protected void onNewIntent(Intent intent) { mRemoteActivity.onNewIntent(intent); super.onNewIntent(intent); } @Override public void onBackPressed() { mRemoteActivity.onBackPressed(); super.onBackPressed(); } @Override public boolean onTouchEvent(MotionEvent event) { super.onTouchEvent(event); return mRemoteActivity.onTouchEvent(event); } @Override public boolean onKeyUp(int keyCode, KeyEvent event) { super.onKeyUp(keyCode, event); return mRemoteActivity.onKeyUp(keyCode, event); } @Override public void onWindowAttributesChanged(LayoutParams params) { mRemoteActivity.onWindowAttributesChanged(params); super.onWindowAttributesChanged(params); } @Override public void onWindowFocusChanged(boolean hasFocus) { mRemoteActivity.onWindowFocusChanged(hasFocus); super.onWindowFocusChanged(hasFocus); } @Override public boolean onCreateOptionsMenu(Menu menu) { mRemoteActivity.onCreateOptionsMenu(menu); return super.onCreateOptionsMenu(menu); } @Override public boolean onOptionsItemSelected(MenuItem item) { mRemoteActivity.onOptionsItemSelected(item); return super.onOptionsItemSelected(item); } }