从我的使用通用图像加载器的应用程序共享图像

时间:2013-01-29 15:03:12

标签: android

在我的应用程序中,我使用通用图像加载器查看我的图像,其链接保存为字符串数组,我试图修改ImagePager类,为图像添加Share按钮,但是没有和我一起工作? 我添加了Share按钮到Layout of Item_image_pager 我写了这段代码

share.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {
            /*
            Intent share = new Intent(Intent.ACTION_SEND);
            share.setType("image/jpeg");

            share.putExtra(Intent.EXTRA_STREAM,
              Uri.parse("images[position]"));

            startActivity(Intent.createChooser(share, "Share Image"));*/
        }
    });

但出现以下错误!

致命的例外:主要 java.lang.RuntimeException:无法启动活动java.lang.NullPointerException

我在ImagePagerActivity中添加了分享按钮 通用图像加载程序代码Universal Image Loader

0 个答案:

没有答案