我已尝试过所有方法,但无法从view pager获取图像。我也得到了图像的当前位置。但即使我无法从文件夹中获取图像。
public class quotes extends AppCompatActivity {
private ShareActionProvider mShareActionProvider;
Button btn;
ViewPager viewPager=null;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.quotes_pager);
btn = (Button) this.findViewById(R.id.share);
viewPager = (ViewPager) findViewById(R.id.pager);
viewPager.setAdapter(new CustomPagerAdapter(this));
btn.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
Intent sharingIntent = new Intent(Intent.ACTION_SEND);
sharingIntent.setType("image/jpg");
int position=viewPager.getCurrentItem();
Uri uri = Uri.parse("@mipmap-hdpi/"+"apj"+position+".jpg");
sharingIntent.putExtra(Intent.EXTRA_STREAM, uri);
startActivity(Intent.createChooser(sharingIntent, "Share using"));
}
});
}
}
这是我的图片文件夹。我把我的图像保存在mip map文件夹中。这有什么问题吗?如果没有,请告诉我如何使用当前位置的查看寻呼机图像从该文件夹中获取图像。
答案 0 :(得分:0)
您无法从应用程序资产或资源文件夹共享图像,uri必须可供其他应用程序访问。
您需要将图像放在临时文件夹(而不是app内部文件夹)中,然后通过intent
发送。
请检查此answer。