我测试一个Android应用程序,它具有将电话库中的照片设置为头像的功能。我的设备运行在 API LEVEL 4.2.2 上,我使用的是Appium 1.2.4.1。和使用Java编码。我想知道如何访问特定照片。第一个屏幕显示照片所在的所有根文件夹(例如100ANDRO),点击后我可以访问照片。 “检查器窗口”不显示可以选择导航到照片的元素。以下是我从Inspector中看到的内容:
我是如何实际访问照片并选择它的?感谢!!!
答案 0 :(得分:-2)
Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_PICK);
startActivityForResult(Intent.createChooser(intent, "Select Picture"),SELECT_PHOTO);
答案 1 :(得分:-2)
您可以使用Intent访问图库图像 -
Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent,
"Select Picture"), SELECT_PICTURE);
并通过 -
处理回调public void onActivityResult(int requestCode, int resultCode, Intent data) {
if (resultCode == RESULT_OK) {
if (requestCode == SELECT_PICTURE) {
Uri selectedImageUri = data.getData();
selectedImagePath = getPath(selectedImageUri);
}
}
}
/**
* helper to retrieve the path of an image URI
*/
public String getPath(Uri uri) {
// just some safety built in
if( uri == null ) {
// TODO perform some logging or show user feedback
return null;
}
// try to retrieve the image from the media store first
// this will only work for images selected from gallery
String[] projection = { MediaStore.Images.Media.DATA };
Cursor cursor = managedQuery(uri, projection, null, null, null);
if( cursor != null ){
int column_index = cursor
.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
cursor.moveToFirst();
return cursor.getString(column_index);
}
// this is our fallback here
return uri.getPath();
}
我认为这会对你有所帮助:)。