介绍:
android调用系统图库的问题
调用系统图库:
Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent,"选择图片"), 2);
获取图片的内容:
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
Drawable d =null;
if (requestCode == 2) {
if (Activity.RESULT_OK == resultCode) {
Uri uri1 = data.getData();
Cursor cursor = this.getContentResolver().query(uri1, new String[]{"_data"},null, null, null);
if(cursor.moveToFirst()){
String otherfile = cursor.getString(0);
d=Drawable.createFromPath(otherfile );
}
}
}
}
如何强制刷新Android系统图库
系统自带的话,一般都是往下拉。如果没有,那就是不能刷新
不过我们可以投机取巧啊!你点一下设置→应用→找到图库(在全部应用里),强制关闭
之后你再打开就好了,
系统崩溃
就重启。或直接重启也行
在android系统 里的 gallery什么意思啊
android系统里的“gallery”指的是图库相册。
gallery 表示:n. 画廊;走廊;旁听席;地道;vt. 在…修建走廊;在…挖地道;vi. 挖地道
相关短语
1、art gallery 美术馆;画廊
2、photo gallery 图片库
3、picture gallery 画馆;美术馆
扩展资料:
近义词:n. 画廊;走廊;旁听席;地道 hall、passage、corridor、underground、subway
gallery 来自拉丁语Galilaea, 现巴勒斯坦地名Galilee,原指位于Galilee的教堂门廊,走廊。
双语例句
1、Before we go to the gallery.
在我们去画廊之前。
2、Is this your gallery?
这是你的画廊吗?
3、So what did dad have to do at the gallery.
那么其实爸爸要去画廊做什么?
网友评论
最新评论
旁听席;地道;vt. 在…修建走廊;在…挖地道;vi. 挖地道相关短语1、art gallery 美术馆;画廊2、photo gallery 图片库3、picture
介绍:1、android调用系统图库的问题2、如何强制刷新Android系统图库3、在android系统 里的 gallery什么意思啊android调用系统图库的问题调用系统图库:Intent int
t()){ String otherfile = cursor.getString(0); d=Drawable.createFromPath(otherfile ); }