我正在努力从另一个申请中获取<代码>CustomView。 请允许我说,我有两个申请A和B。 我知道<条码>的包装名称,例如<条码>。 能否在申请A时设定这一类别的目标?
我的目的是找到一种办法,以建立<条码>,并能够在我的申请中显示。 但是,我想他们(观点)是一个单独的跳板,可以向安伯市场公布,并作为某种延伸下载。
<代码>CustomView只会在屏幕上显示某种估计(例如左下)。 它将不首先处理任何数据。
Edit
I found something like this:
@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
我希望这将发挥作用。 让我知道。