Android Open Source - AndroidPlugin Plugin Delegate Activity Impl






From Project

Back to project page AndroidPlugin.

License

The source code is released under:

MIT License

If you think the Android project AndroidPlugin listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
 * Copyright (C) 2014 achellies//from  w  ww  .  j a  v a2 s. c  o m
 *
 * 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.limemobile.app.plugin.internal;

import java.lang.reflect.Constructor;

import android.annotation.TargetApi;
import android.app.Activity;
import android.content.Intent;
import android.content.pm.ActivityInfo;
import android.content.pm.PackageInfo;
import android.content.res.AssetManager;
import android.content.res.Resources;
import android.content.res.Resources.Theme;
import android.os.Build;
import android.os.Bundle;
import android.text.TextUtils;

import com.limemobile.app.plugin.IPluginActivity;

public class PluginDelegateActivityImpl {
  protected String mPluginClientActivityClass;
  protected String mPluginClientPackageName;

  protected PluginClientInfo mPluginClient;
  protected PluginClientManager mPluginManager;

  protected AssetManager mAssetManager;
  protected Resources mResources;
  protected Theme mTheme;

  protected ActivityInfo mActivityInfo;
  protected Activity mPluginHostActivity;
  protected IPluginActivity mDelegatedActivity;

  public PluginDelegateActivityImpl(Activity activity) {
    mPluginHostActivity = activity;
  }

  public void onCreate(Intent intent) {
    mPluginClientPackageName = intent
        .getStringExtra(PluginClientManager.INTENT_EXTRA_PLUGIN_CLIENT_PACKAGE_NAME);
    mPluginClientActivityClass = intent
        .getStringExtra(PluginClientManager.INTENT_EXTRA_PLUGIN_CLIENT_ACTIVITY_CLASS);

    mPluginManager = PluginClientManager
        .sharedInstance(mPluginHostActivity);
    mPluginClient = mPluginManager
        .getPluginClient(mPluginClientPackageName);
    mAssetManager = mPluginClient.mAssetManager;
    mResources = mPluginClient.mResources;

    initializeActivityInfo();
    handleActivityInfo();
    launchTargetActivity();
  }

  private void initializeActivityInfo() {
    PackageInfo packageInfo = mPluginClient.mClientPackageInfo;
    if ((packageInfo.activities != null)
        && (packageInfo.activities.length > 0)) {
      if (TextUtils.isEmpty(mPluginClientActivityClass)) {
        mPluginClientActivityClass = packageInfo.activities[0].name;
      }
      for (ActivityInfo a : packageInfo.activities) {
        if (a.name.equals(mPluginClientActivityClass)) {
          mActivityInfo = a;
        }
      }
    }
  }

  private void handleActivityInfo() {
    if (mActivityInfo.theme > 0) {
      mPluginHostActivity.setTheme(mActivityInfo.theme);
    }
    Theme superTheme = mPluginHostActivity.getTheme();
    mTheme = mResources.newTheme();
    mTheme.setTo(superTheme);

    // TODO: handle mActivityInfo.launchMode here in the future.
  }

  @TargetApi(Build.VERSION_CODES.ICE_CREAM_SANDWICH)
  protected void launchTargetActivity() {
    try {
      Class<?> localClass = getClassLoader().loadClass(
          mPluginClientActivityClass);
      Constructor<?> localConstructor = localClass
          .getConstructor(new Class[] {});
      Object instance = localConstructor.newInstance(new Object[] {});
      if (!(instance instanceof IPluginActivity)) {
        throw new IllegalArgumentException();
      }
      mDelegatedActivity = (IPluginActivity) instance;
      ((IPluginActivityDelegate) mPluginHostActivity)
          .attach(mDelegatedActivity);

      mDelegatedActivity.setDelegate(mPluginHostActivity, mPluginClient);

      Bundle bundle = new Bundle();
      mDelegatedActivity.onCreate(bundle);
    } catch (Exception e) {
      e.printStackTrace();
    }
  }

  public ClassLoader getClassLoader() {
    return mPluginClient.mClassLoader;
  }

  public AssetManager getAssets() {
    return mAssetManager;
  }

  public Resources getResources() {
    return mResources;
  }

  public Theme getTheme() {
    return mTheme;
  }

  public IPluginActivity getRemoteActivity() {
    return mDelegatedActivity;
  }
}




Java Source Code List

android.widget.ViewStub.java
androidx.plmgrdemo.MainActivity.java
androidx.plmgrdemo.PlugListViewAdapter.java
androidx.pluginmgr.ActivityClassGenerator.java
androidx.pluginmgr.ActivityOverider.java
androidx.pluginmgr.FileUtil.java
androidx.pluginmgr.FrameworkClassLoader.java
androidx.pluginmgr.LayoutInflaterWrapper.java
androidx.pluginmgr.PlugInfo.java
androidx.pluginmgr.PluginActivityLifeCycleCallback.java
androidx.pluginmgr.PluginClassLoader.java
androidx.pluginmgr.PluginContextWrapper.java
androidx.pluginmgr.PluginManager.java
androidx.pluginmgr.PluginManifestUtil.java
androidx.pluginmgr.ReflectionUtils.java
androidx.pluginmgr.XmlManifestReader.java
com.limemobile.app.demo.pluginclienta.ClientABindService.java
com.limemobile.app.demo.pluginclienta.ClientAStartedService.java
com.limemobile.app.demo.pluginclienta.MainActivity.java
com.limemobile.app.demo.pluginclienta.TestButton.java
com.limemobile.app.demo.pluginclienta.TestFragmentActivity.java
com.limemobile.app.demo.pluginclienta.TestFragment.java
com.limemobile.app.demo.pluginclientb.ClientBStartedService.java
com.limemobile.app.demo.pluginclientb.MainActivity.java
com.limemobile.app.demo.pluginhost.HostBindService.java
com.limemobile.app.demo.pluginhost.HostStartedService.java
com.limemobile.app.demo.pluginhost.MainActivity.java
com.limemobile.app.demo.pluginhost.MyApplication.java
com.limemobile.app.demo.pluginhost.TestHostClass.java
com.limemobile.app.plugin.IPluginActivity.java
com.limemobile.app.plugin.IPluginContentProvider.java
com.limemobile.app.plugin.IPluginService.java
com.limemobile.app.plugin.PluginClientActivity.java
com.limemobile.app.plugin.PluginClientFragmentActivity.java
com.limemobile.app.plugin.PluginClientService.java
com.limemobile.app.plugin.PluginHostApplication.java
com.limemobile.app.plugin.PluginHostContentProvider.java
com.limemobile.app.plugin.PluginHostDelegateActivity.java
com.limemobile.app.plugin.PluginHostDelegateContentProvider.java
com.limemobile.app.plugin.PluginHostDelegateFragmentActivity.java
com.limemobile.app.plugin.PluginHostDelegateService.java
com.limemobile.app.plugin.internal.IPluginActivityDelegate.java
com.limemobile.app.plugin.internal.IPluginContentProviderDelegate.java
com.limemobile.app.plugin.internal.IPluginServiceDelegate.java
com.limemobile.app.plugin.internal.PluginClientDexClassLoader.java
com.limemobile.app.plugin.internal.PluginClientInfo.java
com.limemobile.app.plugin.internal.PluginClientManager.java
com.limemobile.app.plugin.internal.PluginDelegateActivityImpl.java
com.limemobile.app.plugin.internal.PluginDelegateContentProviderImpl.java
com.limemobile.app.plugin.internal.PluginDelegateServiceImpl.java
com.limemobile.app.plugin.internal.ReflectFieldAccessor.java