- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章分享实现Android图片选择的两种方式由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
Android选择图片的两种方式:
第一种:单张选取 。
通过隐式启动activity,跳转到相册选择一张返回结果 。
关键代码如下:
发送请求:
1
2
3
4
5
6
7
8
9
10
11
|
private
static
final
int
PICTURE =
10086
;
//requestcode
Intent intent =
new
Intent();
if
(Build.VERSION.SDK_INT <
19
) {
//因为Android SDK在4.4版本后图片action变化了 所以在这里先判断一下
intent.setAction(Intent.ACTION_GET_CONTENT);
}
else
{
intent.setAction(Intent.ACTION_OPEN_DOCUMENT);
}
intent.setType(
"image/*"
);
intent.addCategory(Intent.CATEGORY_OPENABLE);
startActivityForResult(intent, PICTURE);
|
接收结果:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
@Override
protected
void
onActivityResult(
int
requestCode,
int
resultCode, Intent data) {
if
(data ==
null
) {
this
.finish();
return
;
}
Uri uri = data.getData();
switch
(requestCode) {
case
PICTURE:
image = FileUtils.getUriPath(
this
, uri);
//(因为4.4以后图片uri发生了变化)通过文件工具类 对uri进行解析得到图片路径
break
;
default
:
break
;
}
this
.finish();
}
|
文件工具类:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
public
class
FileUtils {
private
static
final
String TAG =
"FileUtils"
;
private
static
final
boolean
DEBUG =
false
;
/**
* 获取可读的文件大小
*/
public
static
String getReadableFileSize(
int
size) {
final
int
BYTES_IN_KILOBYTES =
1024
;
final
DecimalFormat dec =
new
DecimalFormat(
"###.#"
);
final
String KILOBYTES =
" KB"
;
final
String MEGABYTES =
" MB"
;
final
String GIGABYTES =
" GB"
;
float
fileSize =
0
;
String suffix = KILOBYTES;
if
(size > BYTES_IN_KILOBYTES) {
fileSize = size / BYTES_IN_KILOBYTES;
if
(fileSize > BYTES_IN_KILOBYTES) {
fileSize = fileSize / BYTES_IN_KILOBYTES;
if
(fileSize > BYTES_IN_KILOBYTES) {
fileSize = fileSize / BYTES_IN_KILOBYTES;
suffix = GIGABYTES;
}
else
{
suffix = MEGABYTES;
}
}
}
return
String.valueOf(dec.format(fileSize) + suffix);
}
/**
* 获取文件的文件名(不包括扩展名)
*/
public
static
String getFileNameWithoutExtension(String path) {
if
(path ==
null
) {
return
null
;
}
int
separatorIndex = path.lastIndexOf(File.separator);
if
(separatorIndex <
0
) {
separatorIndex =
0
;
}
int
dotIndex = path.lastIndexOf(
"."
);
if
(dotIndex <
0
) {
dotIndex = path.length();
}
else
if
(dotIndex < separatorIndex) {
dotIndex = path.length();
}
return
path.substring(separatorIndex +
1
, dotIndex);
}
/**
* 获取文件名
*/
public
static
String getFileName(String path) {
if
(path ==
null
) {
return
null
;
}
int
separatorIndex = path.lastIndexOf(File.separator);
return
(separatorIndex <
0
) ? path : path.substring(separatorIndex +
1
, path.length());
}
/**
* 获取扩展名
*/
public
static
String getExtension(String path) {
if
(path ==
null
) {
return
null
;
}
int
dot = path.lastIndexOf(
"."
);
if
(dot >=
0
) {
return
path.substring(dot);
}
else
{
return
""
;
}
}
public
static
File getUriFile(Context context, Uri uri) {
String path = getUriPath(context, uri);
if
(path ==
null
) {
return
null
;
}
return
new
File(path);
}
public
static
String getUriPath(Context context, Uri uri) {
if
(uri ==
null
) {
return
null
;
}
if
(Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT && DocumentsContract.isDocumentUri(context, uri)) {
if
(
"com.android.externalstorage.documents"
.equals(uri.getAuthority())) {
final
String docId = DocumentsContract.getDocumentId(uri);
final
String[] split = docId.split(
":"
);
final
String type = split[
0
];
if
(
"primary"
.equalsIgnoreCase(type)) {
return
Environment.getExternalStorageDirectory() +
"/"
+ split[
1
];
}
}
else
if
(
"com.android.providers.downloads.documents"
.equals(uri.getAuthority())) {
final
String id = DocumentsContract.getDocumentId(uri);
final
Uri contentUri = ContentUris.withAppendedId(Uri.parse(
"content://downloads/public_downloads"
), Long.valueOf(id));
return
getDataColumn(context, contentUri,
null
,
null
);
}
else
if
(
"com.android.providers.media.documents"
.equals(uri.getAuthority())) {
final
String docId = DocumentsContract.getDocumentId(uri);
final
String[] split = docId.split(
":"
);
final
String type = split[
0
];
Uri contentUri =
null
;
if
(
"image"
.equals(type)) {
contentUri = MediaStore.Images.Media.EXTERNAL_CONTENT_URI;
}
else
if
(
"video"
.equals(type)) {
contentUri = MediaStore.Video.Media.EXTERNAL_CONTENT_URI;
}
else
if
(
"audio"
.equals(type)) {
contentUri = MediaStore.Audio.Media.EXTERNAL_CONTENT_URI;
}
final
String selection =
"_id=?"
;
final
String[] selectionArgs =
new
String[] {split[
1
]};
return
getDataColumn(context, contentUri, selection, selectionArgs);
}
}
else
if
(
"content"
.equalsIgnoreCase(uri.getScheme())) {
if
(
"com.google.android.apps.photos.content"
.equals(uri.getAuthority())) {
return
uri.getLastPathSegment();
}
return
getDataColumn(context, uri,
null
,
null
);
}
else
if
(
"file"
.equalsIgnoreCase(uri.getScheme())) {
return
uri.getPath();
}
return
null
;
}
public
static
String getDataColumn(Context context, Uri uri, String selection, String[] selectionArgs) {
Cursor cursor =
null
;
final
String column =
"_data"
;
final
String[] projection = {column};
try
{
cursor = context.getContentResolver().query(uri, projection, selection, selectionArgs,
null
);
if
(cursor !=
null
&& cursor.moveToFirst()) {
final
int
column_index = cursor.getColumnIndexOrThrow(column);
return
cursor.getString(column_index);
}
}
finally
{
if
(cursor !=
null
) cursor.close();
}
return
null
;
}
}
|
第二种方式 批量选择图片 。
如果我们需要类似于微信那样的一次选取多张图片,很明显第一种方式是不能满足需求,那么怎么才能批量选取呢?andorid并提供像单张选取似的批量选取的直接方法,所以我们只能自己从数据库中获得.
首先我们要认识一个类mediastore android中所有的多媒体文件都存储在这个数据库中,例如图片 视频 音频 等等,他通过contentprovider 向其他进程提供数据的接口 。
想要从mediastore中获得数据,我们可以使用与ContentProvider 对应的ContentResolver 。
关键代码:
1
2
3
4
5
6
7
8
9
10
11
|
final
String[] projectionPhotos = {
MediaStore.Images.Media._ID,
//每一列的ID 图片的ID
MediaStore.Images.Media.BUCKET_ID,
//图片所在文件夹ID
MediaStore.Images.Media.BUCKET_DISPLAY_NAME,
//图片所在文件夹名称
MediaStore.Images.Media.DATA,
//图片路径
MediaStore.Images.Media.DATE_TAKEN,
//图片创建时间
};
cursor = MediaStore.Images.Media.query(context.getContentResolver(), MediaStore.Images.Media.EXTERNAL_CONTENT_URI
, projectionPhotos,
""
,
null
, MediaStore.Images.Media.DATE_TAKEN +
" DESC"
);
|
所有图片都在cursor里了 再从cursor中取出即可 。
最后此篇关于分享实现Android图片选择的两种方式的文章就讲到这里了,如果你想了解更多关于分享实现Android图片选择的两种方式的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
是否有某种方法可以使用 JPA 或 Hibernate Crtiteria API 来表示这种 SQL?或者我应该将其作为 native 执行吗? SELECT A.X FROM (SELECT X,
在查询中, select id,name,feature,marks from (....) 我想删除其 id 在另一个 select 语句中存在的那些。 从 (...) 中选择 id 我是 sql
我想响应用户在 select 元素中选择一个项目。然而这个 jQuery: $('#platypusDropDown').select(function () { alert('You sel
这个问题在这里已经有了答案: SQL select only rows with max value on a column [duplicate] (27 个回答) 关闭8年前。 我正在学习 SQL
This question already has answers here: “Notice: Undefined variable”, “Notice: Undefined index”, and
我在 php 脚本中调用 SQL。有时“DE”中没有值,如果是这种情况我想从“EN”中获取值 应该是这样的,但不是这样的 IF (EXISTS (SELECT epf_application_deta
这可能是一个奇怪的问题,但不知道如何研究它。执行以下查询时: SELECT Foo.col1, Foo.col2, Foo.col3 FROM Foo INNER JOIN Bar ON
如何在使用 Camera.DestinationType.FILE_URI. 时在 phonegap camera API 中同时选择或拾取多个图像我能够一次只选择一张图像。我可以使用 this 在
这是一个纯粹的学术问题。这两个陈述实际上是否相同? IF EXISTS (SELECT TOP 1 1 FROM Table1) SELECT 1 ELSE SELECT 0 相对 IF EXIS
我使用 JSoup 来解析 HTML 响应。我有多个 Div 标签。我必须根据 ID 选择 Div 标签。 我的伪代码是这样的 Document divTag = Jsoup.connect(link
我正在处理一个具有多个选择框的表单。当用户从 selectbox1 中选择一个选项时,我需要 selectbox2 active 的另一个值。同样,当他选择 selectbox2 的另一个值时,我需要
Acme Inc. Christa Woods Charlotte Freeman Jeffrey Walton Ella Hubbard Se
我有一个login.html其中form定义如下: First Initial Plus Last Name : 我的do_authorize如下: "; pri
$.get( 'http://www.ufilme.ro/api/load/maron_online/470', function(data
我有一个下拉列表“磅”、“克”、“千克”和“盎司”。我想要这样一种情况,当我选择 gram 来执行一个函数时,当我在输入字段中输入一个值时,当我选择 pounds 时,我想要另一个函数来执行时我在输入
我有一个 GLSL 着色器,它从输入纹理的 channel 之一(例如 R)读取,然后写入输出纹理中的同一 channel 。该 channel 必须由用户选择。 我现在能想到的就是使用一个 int
我想根据下拉列表中的选定值生成输入文本框。 Options 2 3 4 5 就在这个选择框之后,一些输入字段应该按照选定的数字出现。 最佳答案 我建议您使用响应式(Reac
我是 SQL 新手,我想问一下如何根据首选项和分组选择条目。 +----------+----------+------+ | ENTRY_ID | ROUTE_ID | TYPE | +------
我有以下表结构: CREATE TABLE [dbo].[UTS_USERCLIENT_MAPPING_USER_LIST] ( [MAPPING_ID] [int] IDENTITY(1,1
我在移除不必要的床单时遇到了问题。我查看了不同的论坛并将不同的解决方案混合在一起。 此宏删除工作表(第一张工作表除外)。 Sub wrong() Dim sht As Object Applicati
我是一名优秀的程序员,十分优秀!