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.
package com.ryg.dynamicload.sample.mainpluginb; /*from ww w . j a v a 2 s . com*/ import android.content.Context; import android.content.Intent; import android.os.Bundle; import android.util.Log; import android.view.Menu; import android.view.View; import android.view.View.OnClickListener; import android.view.ViewGroup.LayoutParams; import android.widget.Button; import android.widget.LinearLayout; import android.widget.TextView; import com.ryg.dynamicload.DLBasePluginActivity; import com.ryg.dynamicload.sample.mainhost.TestHostClass; public class MainActivity extends DLBasePluginActivity { private static final String TAG = "MainActivity"; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); initView(savedInstanceState); } private void initView(Bundle savedInstanceState) { that.setContentView(generateContentView(that)); } private View generateContentView(final Context context) { LinearLayout layout = new LinearLayout(context); layout.setOrientation(LinearLayout.VERTICAL); layout.setLayoutParams(new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT)); Button button = new Button(context); button.setText("Invoke host method"); layout.addView(button, LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT); button.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { TestHostClass testHostClass = new TestHostClass(); testHostClass.testMethod(that); } }); TextView textView = new TextView(context); textView.setText("Hello, I'm Plugin B."); textView.setTextSize(30); layout.addView(textView, LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT); return layout; } @Override public void onActivityResult(int requestCode, int resultCode, Intent data) { Log.d(TAG, "onActivityResult resultCode=" + resultCode); if (resultCode == RESULT_FIRST_USER) { that.finish(); } super.onActivityResult(requestCode, resultCode, data); } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.main, menu); return true; } }