1

我在 SQLite 中有一个状态不同的订单列表:已分配、已加载、已交付。我希望每个订单在列表中显示时都有不同的颜色背景。到目前为止,我还没有找到一个很好的方法来做到这一点。

我发现很多关于如何根据位置更改列表项的背景颜色的讨论,但没有基于数据内容的讨论。我还发现了很多关于如何更改用于突出显示所选项目的颜色的讨论。这些对我没有帮助。

我想出的解决我的问题的唯一方法是在适配器创建它之后运行整个列表,并为每个项目设置背景。这是笨拙和浪费的。我希望有一种更有效的方法可以在从光标创建列表时更改适配器中的背景。

我确信有更好的方法。我对Android太陌生了,不知道。


我真的很感激到目前为止的反应。我正在尽我所能来整合它们,但我仍然没有成功。这是我刚刚尝试过的,基于我得到的答案和我所做的研究。

public class OrderListAdapter extends SimpleCursorAdapter {

    private static final String TAG = "SimpleCursorAdapter";
    Context _context = null;
    int layoutResourceId = 0;

    public OrderListAdapter(Context context, int layout, Cursor c,
            String[] from, int[] to, int flags) {
        super(context, layout, c, from, to, flags);
        _context = context;
    }

    public View getView(int position, View convertView, ViewGroup parent) {
        View view = super.getView(position, convertView, parent);
        String tag = TAG + ".getView()";
        Log.d(tag,"in getView()");

        if (view == null) {
            LayoutInflater inflater = ((Activity)_context).getLayoutInflater();
            view = inflater.inflate(R.layout.fragment_order_list_row, null);
        }
        setRowColor(view);
        return view;
    }

    private void setRowColor(View view) {
        String tag = TAG + ".setRowColor()";
        Cursor cursor = getCursor();
        int col = cursor
                .getColumnIndex(DBContract.DeliveryOrderTable.ENROUTE_FLAG);
        String enroute_flag = cursor.getString(col);
        Log.d(tag, "enroute_flag = [" + enroute_flag + "]");
        col = cursor
                .getColumnIndex(DBContract.DeliveryOrderTable.DELIVERED_DATETIME);
        String deliveredDateStr = cursor.getString(col);
        Log.d(tag, "deliveredDateStr = [" + deliveredDateStr + "]");
        int bgColorId = 0;
        if (!deliveredDateStr.equals("")) {
            bgColorId = R.color.bg_status_delivered_color;
            Log.d(tag, "Setting to delivered color");
        } else if (enroute_flag.startsWith("T") || enroute_flag.startsWith("Y")) {
            Log.d(tag, "Setting to enroute color");
            bgColorId = R.color.bg_status_enroute_color;
        } else {
            Log.d(tag, "Setting to assigned color");
            bgColorId = R.color.bg_status_assigned_color;
        }
        view.setBackgroundColor(_context.getResources().getColor(bgColorId));
    }
}

不幸的是,这不起作用。如果我不调用 super.getView(),我最终会在字段中没有数据,显然,因为我没有明确地进行传输,但我想我可以只修改返回的视图。

我的痕迹显示我正在读取数据,但背景颜色没有改变。

看来我要更改的视图是 LinearLayout,但更改背景颜色似乎不起作用。

知道了!确保使所有子视图的背景透明。

4

2 回答 2

2

如果您使用任何自定义适配器用于列表视图,那么您将有一个方法 getView(),在返回之前调用一个方法,并根据您想要更改的颜色传递视图(正在返回)和数据排。

public View getView(int position, View convertView, ViewGroup parent) {
    // TODO Auto-generated method stub
    View view = convertView;
    if (view == null) {
        LayoutInflater vi = (LayoutInflater) _c.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        view = vi.inflate(R.layout.list_item_var, null);
    }

    TextView varView = (TextView) view.findViewById(R.id.var);
    TextView valueView = (TextView) view.findViewById(R.id.value);

    VarDetails var = _data.get(position);
    setRowColor(view, var.getVar());
    varView.setText(var.var);
    valueView.setText("Value: " + var.value);

    return view;
}
private void setRowColor(View view, String var) {
    if("assigned".equalsIgnoreCase(var)){
        view.setBackgroundColor(Color.rgb(255,0,0));
    }else if("loaded".equalsIgnoreCase(var)){
        view.setBackgroundColor(Color.rgb(0,255,0));
    }else if("delivered".equalsIgnoreCase(var)){
        view.setBackgroundColor(Color.rgb(0,0,255));
    }
}

请根据您的数据类型更改方法。

于 2013-04-24T08:13:03.367 回答
1

我会说尝试扩展 CursorAdapter 以将您的数据库与 ListView 绑定。然后你可以重写 ListView.dispatchDraw() 来自定义你的 Paint 对象。

或者检查一下可能会有所帮助:Customizing Android ListView Items with Custom ArrayAdapter

它根据天气状况使用不同的图像。移植到您的问题,您可以使用 9-patch 或以编程方式创建的 Drawables 作为背景,而不是更改 Paint 中的内容。

于 2013-04-23T22:35:36.390 回答