我搜索了很多帖子,但还没有找到一个答案,不会导致使用第三方图片选择图库。一些事情:我正在测试我的手机有android 4.3
我的活动上有一个按钮,可以启动看起来像这样的意图:
public void GoToPics(View view) {
Intent intent = new Intent( );
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true);
startActivityForResult(Intent.createChooser(intent,
"select multiple images"), SELECT_PHOTOS_RESULT);
}
在其他帖子中,人们建议将其放入清单中:
<activity
android:name="package.name.Photos"
android:label="@string/title_activity_photos" >
<intent-filter>
<action android:name="android.intent.action.SEND_MULTIPLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="image/*" />
</intent-filter>
</activity>
现在有了代码,我到了画廊,只能选择一张照片。必须有一种简单的方法来获得多个我失踪的东西?