onActivityResult函数保持图像选择器

时间:2014-10-14 20:00:48

标签: java android

在我的Android应用程序中,我允许用户选择图像。所选图像将上载到服务器,然后显示在视图中。我遇到的问题是,一旦用户选择图像,图像选择屏幕(显示用户选择的所有缩略图)在图像上传到服务器之前不会被隐藏。

来自:http://developer.android.com/reference/android/app/Activity.html#startActivityForResult(android.content.Intent,int,android.os.Bundle)

As a special case, if you call startActivityForResult() with a requestCode >= 0 during the initial onCreate(Bundle savedInstanceState)/onResume() of your activity, then your window will not be displayed until a result is returned back from the started activity. This is to avoid visible flickering when redirecting to another activity.

所以我确保使用Runnable在不同的线程上执行图像上传。如何在我的活动上传图像时立即关闭图像选择器视图?

0 个答案:

没有答案