我很难从一项活动中恢复信息,我对执行情况的理解并不全面。
我想要的是,用户能够点击一个顿子,装上 and子,选择图像,将图像(或与图像链接)转换成一个插图/可选择,这在我的活动中见到。
我有刺 the乐机开张,但我没有从那里得到任何反应(我知道,为什么在彩礼中没有任何意图——我有这样做的机会,以便洗衣,但我知道解决办法)。
ImageView galleryClick = (ImageView)findViewById(R.id.addgallery);
profilePic = (ImageView)findViewById(R.id.profilepic);
galleryClick.setOnClickListener(new OnClickListener(){
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("image/*");
startActivityForResult(Intent.createChooser(intent, "Select Picture"),1);
}
});
我所希望的是,在我的手写活动中,将呼吁开展主动活动,但这一方法从未被称作(我在其法典中规定一个突破点)。
public void onActivityResult(int requestCode, int resultCode, Intent data) {
if (resultCode == RESULT_OK) {
if (requestCode == 1) {
// currImageURI is the global variable I m using to hold the content:// URI of the image
//currImageURI = data.getData();
}
}
}
解决办法?