在我的Android应用程序中,用户可以输入个人资料照片。我的资产文件夹中有一个预定义的数据库。它有一个名为Person的表。在Person表中有一个字段Profile Picture,它具有BLOB类型。我使用'uri'将配置文件图片保存在数据库中。我已经使用以下代码段来检索图像的uri。
String path = null;
path = Images.Media.insertImage(getContentResolver(), bitmap,
"title", null);
Uri imageUri = Uri.parse(path);
String uriString = imageUri.toString() ;
person.setProfilePic(uriString);
ContentValues values = new ContentValues();
values.put(COLUMN_PROFILE_PICTURE, person.getProfilePic());
这是我的实体类细分。
public class Person {
private int id;
private String profilePic;
private String name, date_of_birth, age, gender, bloodGrp;
......
public String getProfilePic() {
return profilePic;
}
public void setProfilePic(String imageInByte) {
this.profilePic = imageInByte;
}
我使用此方法从数据库中检索了人员数据。
public ArrayList<Person> getPersonList() {
ArrayList<Person> personList = new ArrayList<Person>();
String sql = "SELECT p.PersonName, p.ProfilePicture, p.DOB "
+ "FROM EMPerson p " + "ORDER BY p.PersonName ";
System.out.println(sql);
ArrayList<?> stringList = selectRecordsFromDB(sql, null);
for (int i = 0; i < stringList.size(); i++) {
ArrayList<?> arrayList = (ArrayList<?>) stringList.get(i);
ArrayList<?> list = arrayList;
Person person = new Person();
person.setName((String) list.get(0));
person.setProfilePic((String) list.get(1));
person.setDate_of_birth((String) list.get(2));
personList.add(person);
}
return personList;
}
我使用了以下方法从网址获取Bitmap。
public Bitmap getBitmap(String url) {
Log.d("getBitmap", "getBitmap");
Bitmap bm = null;
try {
URL aURL = new URL(url);
bm = BitmapFactory.decodeStream(aURL.openConnection().getInputStream());
} catch (Exception e) {
e.printStackTrace();
} finally {
}
return bm;
}
我正在调用此getBitmap方法并在图像视图中设置位图,如下所示。
Bitmap image;
image = getBitmap(i.getProfilePic());
proPic.setImageBitmap(image);
这是我的CUstomAdapter类。
package my.easymedi.controller;
import java.util.ArrayList;
import my.easymedi.entity.Person;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.net.Uri;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.ImageView;
import android.widget.TextView;
public class CustomAdapter extends ArrayAdapter<Person> {
private ArrayList<Person> lstPerson;
private Context my_context;
public CustomAdapter(Context context, int textViewResourceId,
ArrayList<Person> objects) {
super(context, textViewResourceId, objects);
this.lstPerson = objects;
my_context = context;
}
public View getView(int position, View convertView, ViewGroup parent) {
// assign the view we are converting to a local variable
View v = convertView;
if (v == null) {
LayoutInflater inflater = (LayoutInflater) getContext()
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
v = inflater.inflate(R.layout.list_item, null);
}
Person i = lstPerson.get(position);
if (i != null) {
TextView personName = (TextView) v.findViewById(R.id.personName);
ImageView proPic = (ImageView) v.findViewById(R.id.imgProPic);
TextView dob = (TextView) v.findViewById(R.id.dateOfBirth);
if (personName != null) {
personName.setText(i.getName());
}
if (proPic != null) {
Bitmap image;
image = getBitmap(i.getProfilePic());
proPic.setImageBitmap(image);
}
if (dob != null) {
dob.setText(i.getDate_of_birth());
}
}
return v;
}
public Bitmap getBitmap(String url) {
Log.d("getBitmap", "getBitmap");
Bitmap bm = null;
try {
Uri aURL = null;// new URL(url);
Uri.parse(url);
bm = BitmapFactory.decodeStream(my_context.getContentResolver().openInputStream(aURL));
} catch (Exception e) {
e.printStackTrace();
} finally {
}
return bm;
}
}
但问题是Image视图为空。即使log cat没有显示任何错误消息。我正在使用模拟器进行测试。任何人都可以如此友善地解释这里发生了什么吗?
提前致谢
答案 0 :(得分:0)
而不是aURL.openConnection().getInputStream()
,您应该使用getContentResolver().openInputStream(aURL)
从内容URI中检索数据。