Back to project page AndroidPlugin.
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.
package com.limemobile.app.demo.pluginhost; // w ww .ja va 2 s . com import android.content.Context; import android.widget.Toast; public class TestHostClass { public void testMethod(Context context) { Toast.makeText(context, "Successed invoke host method", Toast.LENGTH_SHORT).show(); } }