我是Android的新人。
我完成了从数据库中获取数据并将其显示到listview ..
现在我想为每个项目设置背景颜色。
那就是我从数据库中检索数据,这里有一个字段,如状态..
如果状态为1,则项目颜色将变为绿色。
喜欢
我该怎么做。
有可能。请帮帮我。
谢谢你的到来。
答案 0 :(得分:1)
很简单。您需要子类化适配器,并覆盖getView()
,getViewTypeCount()
和getItemViewType()
答案 1 :(得分:1)
在ArrayAdapter中,您可以检查值并根据值更改视图的背景颜色。
答案 2 :(得分:1)
在适配器的getView()方法中,您可以根据金额设置后台资源,如下所示:
// assume view is your item view, status the number, and you have a context
if(status == 1){
view.setBackgroundColor(context.getResources().getColor(R.color.green));
} else {
view.setBackgroundColor(context.getResources().getColor(R.color.red));
}
现在,您需要确保通过使用以下内容创建文件colors.xml来在资源中定义这些颜色:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="red">#ff0000</color>
<color name="green">#00ff00</color>
</resources>
请注意,如果项目是可点击的,则在用户点击时向用户提供反馈非常重要。在这种情况下,您应该使用state list drawable。
评论后编辑。假设Item包含名称和状态,您的适配器应如下所示。
public class MyArrayAdapter extends ArrayAdapter<Item> {
private final Context context;
public MyArrayAdapter(Context context, int textViewResourceId, Item[] objects) {
super(context, textViewResourceId, objects);
this.context = context;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
ViewHolder holder;
if(convertView == null){
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
convertView = inflater.inflate(R.layout.list_item, parent, false);
holder = new ViewHolder();
holder.container = (LinearLayout) convertView.findViewById(R.id.container);
holder.name = (TextView) convertView.findViewById(R.id.name);
holder.status = (TextView) convertView.findViewById(R.id.status);
convertView.setTag(holder);
} else {
holder = (ViewHolder) convertView.getTag();
}
holder.name.setText(getItem(position).name);
holder.status.setText(getItem(position).status);
Item item = getItem(position);
if(item.status == 1){
holder.container.setBackgroundColor(context.getResources().getColor(R.color.green));
} else {
holder.container.setBackgroundColor(context.getResources().getColor(R.color.red));
}
return convertView;
}
private class ViewHolder {
public TextView name;
public TextView status;
public LinearLayout container;
}
}
接下来,list_item.xml布局应如下所示:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="0px"
android:layout_height="wrap_content"
android:id="@+id/container">
<TextView
android:layout_width="0px"
android:layout_height="wrap_content"
android:layout_weight="1"
android:id="@+id/name" />
<TextView
android:layout_width="0px"
android:layout_height="wrap_content"
android:layout_weight="1"
android:id="@+id/status" />
</LinearLayout>
答案 3 :(得分:0)
此示例代码可以帮助您了解如何使用listview和适配器的基本方法。
public class MyAdapter extends BaseAdapter
{
private LayoutInflater m_inflater;
private MyDataSource m_data;
public ProfileListAdapter(MyDataSource _data)
{
m_inflater = m_activity.getLayoutInflater();
m_data = _data;
}
@Override
public int getCount()
{
return m_data.getCount();
}
@Override
public Object getItem(int arg0)
{
return null;
}
@Override
public long getItemId(int arg0)
{
return arg0;
}
@Override
public int getViewTypeCount()
{
return 1;
}
@Override
public int getItemViewType(int _position)
{
return 0;
}
@Override
public View getView(int _position, View _convertView, ViewGroup _parent)
{
View rowView = _convertView;
if(rowView == null)
{
rowView = m_inflater.inflate(R.layout.my_item_view, null);
}
if(m_data.m_list.get(_position).status == 0 )
{
View my_root_layout = v.findViewById(my_root_layout);
my_root_layout.setBackgroundResource(R.drawable.my_item_background);
}
fillInTypeHead(rowView);
return rowView;
}
}
有关详细信息,请访问 http://developer.android.com/guide/topics/ui/declaring-layout.html#AdapterViews
我建议您从Google工程师http://www.youtube.com/watch?v=wDBM6wVEO70观看本教程 这是关于ListViews的基础知识。
答案 4 :(得分:0)
创建一个类似
的模型public class Status {
private String label;
private int status;
public Status(String label, int status) {
this.label = label;
this.status = status;
}
public String getLabel() {
return label;
}
public int getStatus() {
return status;
}
}
创建状态的ArryaList
ArrayList<Status> listOfStatus=new ArrayList<Status>();
listOfStatus.add(new Status("item1", 0));
listOfStatus.add(new Status("item2", 0));
listOfStatus.add(new Status("item3", 1));
listOfStatus.add(new Status("item4", 1));
您需要在Adapter类中传递arrayList。现在初始化Adapter类中的ArrayList说 listOfStatus 并使用它getView()方法。
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View view = convertView;
if (view == null) {
LayoutInflater lInflater= (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
view = lInflater.inflate(R.layout.LIST_ITEM_LAYOUT, parent, false);
}
if (listOfStatus.get(position).getStatus()==1) {
view.setBackgroundColor(context.getResources().getColor(R.color.green));
} else {
view.setBackgroundColor(context.getResources().getColor(R.color.green));
}
return view;
}
}