Android开发

Android上使用jspf插件框架的方法

本文主要是介绍Android上使用jspf插件框架的方法,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

本文实例讲述了Android上使用jspf插件框架的方法。分享给大家供大家参考。具体如下:

jspf (Java Simple Plugin Framework) 是一个插件框架,集成了很多 IoC 框架的概念在里面。

package de.jspfdemo;
import net.xeoh.plugins.base.PluginManager;
import net.xeoh.plugins.base.impl.PluginManagerFactory;
import net.xeoh.plugins.base.util.uri.ClassURI;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
import de.jspfdemo.plugins.CoolPlugin;
import de.jspfdemo.plugins.impl.CoolPluginImpl;
public class JSPFDemo extends Activity {
  /** Called when the activity is first created. */
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    // Loading and adding plugins via class uri
    PluginManager pm = PluginManagerFactory.createPluginManager();
    pm.addPluginsFrom(new ClassURI(CoolPluginImpl.class).toURI());
    // Getting the CoolPlugin
    CoolPlugin plugin = pm.getPlugin(CoolPluginImpl.class);
    // Setting the text of a TextView with the help of the CoolPlugin
    TextView textView = (TextView) findViewById(R.id.textView);
    textView.setText(plugin.sayHello());
  }
}

希望本文所述对大家的Android程序设计有所帮助。

这篇关于Android上使用jspf插件框架的方法的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!