问题:活动1有一个图像的路径,当活动1通过意图发送图像文件时,活动2具有到不同图像的不同路径。
代码活动1:
...
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (requestCode == CAMERA_REQUEST && resultCode == RESULT_OK) {
imageFile = new File(outputFileUri.getPath());
} else if (requestCode == UPLOAD_REQUEST && resultCode == RESULT_OK) {
//Get the data back from the request in URI format (Path to file).
selectedImage = data.getData();
imageFile = new File(getRealPathFromURI(selectedImage));
} else if (resultCode == RESULT_CANCELED) {
return;
}
Intent menuIntent = new Intent(getApplicationContext(), MenuActivity.class);
menuIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_SINGLE_TOP | Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
menuIntent.putExtra("username", username);
menuIntent.putExtra("latitude", latitude);
menuIntent.putExtra("longitude", longitude);
menuIntent.putExtra("imageFile", imageFile);
Log.d("ACTIVITY1 image", imageFile.getPath());//THIS LOG BELOW!!
try{
startActivity(menuIntent);
finish();
}
catch(ActivityNotFoundException e){
e.printStackTrace();
menuIntent.setFlags(Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT);
startActivity(menuIntent);
finish();
}
}
尝试捕获Intent的原因是此活动用于除此之外的其他用法。 代码活动2:
...
@Override
public void onStart() {
super.onStart();
Bundle extras = getIntent().getExtras();
if (extras != null) {
username = extras.getString("username");
latitude = extras.getDouble("latitude");
longitude = extras.getDouble("longitude");
if(extras.get("imageFile") != null){
File imageFile = (File) extras.get("imageFile");
Log.d("ACTIVITY2 image", imageFile.getPath());//THIS LOG BELOW!!
toastContext = getApplicationContext();
params = new ArrayList();
params.add("upload");
params.add(username);
params.add(imageFile);
uploadImage = new UserFunctions(this);
uploadImage.execute(params);
}
}
}
有一个ASyncTask通过POST将文件发送到服务器,并返回JSON以形成通知并根据响应对其进行更新。没有问题。 如果用户已登录,则加载活动2,否则,稍后在用户登录时调用活动2。 当活动2通过buttonListener加载活动1,然后活动1拍摄照片或选择文件时,会出现此问题。当活动1决定时,它会立即再次加载活动2,在意图中传递新的imageFile。当活动2加载时,它会将请求发送到服务器。 返回的日志是: 第一次通过POST发送图像:
DEBUG/ACTIVITY1 image(15559): /storage/emulated/0/DCIM/Camera/IMG_20130215_193022.jpg
然后通过意图传递给活动2
DEBUG/ACTIVITY2 image(15559): /storage/emulated/0/DCIM/Camera/IMG_20130215_193022.jpg
第二次,选择不同的图像或拍摄新照片后:
DEBUG/ACTIVITY1 image(15559): /storage/emulated/0/DCIM/Camera/IMG_20130214_212205.jpg
然后通过意图传递给活动2
DEBUG/ACTIVITY2 image(15559): /storage/emulated/0/DCIM/Camera/IMG_20130215_193022.jpg
如果有ASyncTask / onPostExecute的请求,我会发布它!
谢谢!
编辑:添加Android Manifest以澄清活动:
<activity android:name=".ACTIVITY1" android:label="@string/app_name"
android:screenOrientation="portrait"/>
<activity android:name=".ACTIVITY2"
android:label="@string/app_name"
android:parentActivityName=".ACTIVITY1"
android:excludeFromRecents="true"
android:hardwareAccelerated="true"
android:launchMode="singleTop"
android:taskAffinity=""
android:screenOrientation="portrait">
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".ACTIVITY1"/>
</activity>
答案 0 :(得分:0)
哦,男人,我感觉很糟糕......
在Activity 2启动ASyncTask之后:
uploadImage = new UserFunctions(this);
uploadImage.execute(params);
活动需要结束。 添加
finish();
修好了。