我正在理解下一个问题: 从画布获得img的PG应用程序。我的插件将此图像保存在SD上。此外,我尝试调用意图ACTION_SEND,但在LogCat上获取NPE。 插件中的代码:
public void oper(String imageFile){
Intent intent = new Intent(); intent.setAction(Intent.ACTION_SEND); intent.setType("*/*"); intent.putExtra(Intent.EXTRA_STREAM, Uri.parse(imageFile) ); startActivity(intent); }
我的研究的下一步是从应用程序调用另一个活动(类)。
Intent intent = new Intent(ThisActivity.this,NextActivity.class);
startActivity(意向);
同样的问题。
我怎样才能从插件(java类)中实现对Intent的调用?