gpt4 book ai didi

java - Android - 从SQLite获取数据并显示在ListView中

转载 作者:行者123 更新时间:2023-12-01 11:44:36 26 4
gpt4 key购买 nike

我正在尝试从 SQLite 获取数据,然后我想将其显示在我的 ListView 上,我认为我很困惑或误解了如何正确执行此操作...我所做的事情是:

1.-从 SQLite 创建一个 InsertTable 中(这是有效的)。

db.execSQL("INSERT INTO T_OFERTA VALUES (1, 1, 'Offer1', 30, '2x1', '30, 10-1-2013', '1-1-2013', 'Descripció del producte pew', 1, 'http://www.canon.es/Images/Android-logo_tcm86-1232684.png')");

2.-在我的 ListFragment 上,我创建了:1 ImageView、3 Strings 和 1 Integer 。这样做是因为在我的 Adapter 上,我需要一个 DrawableStringInteger

 ImageView FOTO;
String Title, percent, data_f;
Integer Preu;

3.-我做了一个像这样的光标:

Cursor c;
c = db.rawQuery("Select NOM_OFER,PREU_OFERTA,DATA_F,FOTO, PERCENTDESCOMPTE from T_OFERTA", null);
c.moveToFirst();
if (c != null) {
do {
for (int i = 0; i < c.getColumnCount(); i++) {
Title = c.getString((c.getColumnIndex("NOM_OFER")));
Preu = c.getColumnIndex("PREU_OFERTA");
percent = c.getString((c.getColumnIndex("PERCENTDESCOMPTE")));
data_f = c.getString((c.getColumnIndex("DATA_F")));
FOTO = c.getString((c.getColumnIndex("FOTO"))); // <--- Error because FOTO it's an ImageView....
Log.e("", "" + c.getString(i));
Toast.makeText(getActivity(), "Title" + Title + "Preu" + Preu + "Percent" + percent + "Cheese is " + data_f, Toast.LENGTH_LONG).show();
}
}while (c.moveToNext());
}
c.close();

现在我必须将变量的数据放入:

mItems.add(new ListViewItem(resources.getDrawable(R.drawable.zumo_oferta), getString(R.string.pew), getString(R.string.pew_precio), getString(R.string.pew_descuento), getString(R.string.pew_data)));

我的ListViewItem类看起来像:

    public class ListViewItem {
public final Drawable icon; // the drawable for the ListView item ImageView
public final String title; // the text for the ListView item title
public final String precio; // the price for the ListView item
public final String descuento; // the price for the discount for the ListView item
public final String date; //the date for the sale for the ListView item
// the text for the ListView item description

public ListViewItem(Drawable icon, String title, String precio, String descuento, String date) {
this.icon = icon;
this.title = title;
this.precio = precio;
this.descuento = descuento;
this.date = date;
}
}

我的 ListViewDemoAdapter 看起来像:

  public class ListViewDemoAdapter extends ArrayAdapter<ListViewItem> {

public ListViewDemoAdapter(Context context, List<ListViewItem> items) {
super(context, R.layout.listview_item, items);
}

@Override
public View getView(int position, View convertView, ViewGroup parent) {
ViewHolder viewHolder;

if(convertView == null) {
// inflate the GridView item layout
LayoutInflater inflater = LayoutInflater.from(getContext());
convertView = inflater.inflate(R.layout.listview_item, parent, false);

// initialize the view holder
viewHolder = new ViewHolder();
viewHolder.ivIcon = (ImageView) convertView.findViewById(R.id.ivIcon);
viewHolder.tvTitle = (TextView) convertView.findViewById(R.id.tvTitle);
viewHolder.tvPrice = (TextView) convertView.findViewById(R.id.tvPrice);
viewHolder.tvDiscount = (TextView) convertView.findViewById(R.id.tvDiscount);
viewHolder.tvDate = (TextView) convertView.findViewById(R.id.tvDatas);
convertView.setTag(viewHolder);
} else {
// recycle the already inflated view
viewHolder = (ViewHolder) convertView.getTag();
}

// update the item view
ListViewItem item = getItem(position);
viewHolder.ivIcon.setImageDrawable(item.icon);
viewHolder.tvTitle.setText(item.title);
viewHolder.tvDiscount.setText(item.descuento);
viewHolder.tvPrice.setText(item.precio);
viewHolder.tvDate.setText(item.date);

return convertView;
}


private static class ViewHolder {
ImageView ivIcon;
TextView tvTitle;
TextView tvDiscount;
TextView tvPrice;
TextView tvDate;
}
}

这样做是因为我想看看提取是否正确。

TL;DR

我没有使用任何 BaseAdapter,也没有使用 BitMapAdapter,因为我必须使用 URL 设置为 ImageView 我不知道它是否有效,那么我的问题是,我可以按照我现在这样做的方式来做吗,或者我应该创建一个 BitMapAdater 而不是 >可绘制?如果我这样做,我不能使用我得到的字符串作为“FOTO”-->图像,因为它不是一个Drawable,而是一个String ...你能指导我正确地做到这一点吗?那是因为这只是一个测试,现在我想用我的 SQLite 的数据设置 ListView。

如果您不明白我的问题或只是需要更多代码,请告诉我,我会尽快回复您。

最佳答案

我会更改以下内容:

  1. 为了更容易,请在检索 ListViewItem 时创建它们:

    ArrayList myItems = new ArrayList<ListViewItem>();
    for (int i = 0; i < c.getColumnCount(); i++) {
    Title = c.getString((c.getColumnIndex("NOM_OFER")));
    Preu = c.getColumnIndex("PREU_OFERTA");
    percent = c.getString((c.getColumnIndex("PERCENTDESCOMPTE")));
    data_f = c.getString((c.getColumnIndex("DATA_F")));

    // create and add your items as they are retrieved from the db
    myItems.add(new ListViewItem(...,Title, Preu, percent, data_f));

    ...
    } ...

现在您已经从数据库中取出了所有项目,您可以轻松地将它们传递到您的 ListView/adapter 中:

myAdapter = new ListViewDemoAdapter(getActivity(), myItems);
setListAdapter(myAdapter);
  • 我不会在 ListViewItem 中存储 Drawable,而是将资源 ID 存储为整数:

    int icon = R.drawable.example_icon;
  • 然后在适配器的 getView() 方法中处理到实际图像资源的转换:

    ivIcon.setImageResource(item.icon);

    关于java - Android - 从SQLite获取数据并显示在ListView中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29263410/

    26 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com