我正在努力从另一个应用程序中获取CustomView
。假设我有两个应用程序A和B.我知道CustomView
的包名称,例如com.applicationb.CustomView
。是否可以在运行时在应用程序A中创建此类的对象?
我的目标是找到一种方法来创建CustomViews
并能够在我的应用程序中显示它们。但我希望他们(视图)是一个单独的apk,可以发布到Android Market,并作为某种扩展名下载。
CustomView
只会在屏幕上显示某种动画(例如落叶)。它不适用于第一次申请中的任何数据。
我发现了这样的事情:
@SuppressWarnings("rawtypes")
Class c = Class.forName(package_name);
Method m = c.getDeclaredMethod(method_name);
m.setAccessible(true);
Canvas can= (Canvas) m.invoke(null, null); // since there are no parameters, and called function is static
我希望这会奏效。我告诉你了。
答案 0 :(得分:5)
正如我在此承诺的那样是结果。
String packageName = "com.exapmle.sth";
String className = "com.exapmle.sth.CustomView";
String apkName = getPackageManager().getApplicationInfo(
packageName, 0).sourceDir;
PathClassLoader myClassLoader = new dalvik.system.PathClassLoader(
apkName, ClassLoader.getSystemClassLoader());
Class<?> handler = Class.forName(className, true, myClassLoader);
Constructor[] m = handler.getConstructors();
for (int i = 0; i < m.length; i++) {
if (m[i].getName().contains("CustomView")) {
animation = (View)m[i].newInstance(new Object[] { this });
rootRL.addView(animation, new RelativeLayout.LayoutParams(
RelativeLayout.LayoutParams.FILL_PARENT,
RelativeLayout.LayoutParams.FILL_PARENT));
}
}
使用此代码,可以使用应用程序A从应用程序B获取View。