我有一个图像,我想在另一个课程中使用它。所以我创建了一个这样的URI:
final Uri selectedImage = data.getData();
String path = selectedImage.getPath();
Intent sintent = new Intent(FromFile.this, OurView.class);
sintent.putExtra("image", path);
startActivity(sintent);
我在 OurView 类中这样称呼 uri
String ur = getIntent().getStringExtra("image");
try {
URI uri = new URI(ur);
} catch (URISyntaxException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
我想用这张图片作为这堂课的背景。我怎样才能做到这一点?