显示自定义列表视图的默认选择颜色

时间:2010-09-04 16:10:28

标签: android listview

我有一个自定义BaseAdapter的列表视图。 listview的每一行都有一个TextView和一个CheckBox。

问题是当我点击(或触摸)任何一行时,textview前景变为灰色,而不是默认行为(背景 - >绿色,textview前景 - >白色)。

以下是代码:

row.xml:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                style="@style/layout">


    <TextView android:id="@+id/main_lv_item_textView" 
              style="@style/textViewBig"
              android:layout_alignParentLeft="true"/>


    <CheckBox android:id="@+id/main_lv_item_checkBox" 
              style="@style/checkBox"
              android:layout_width="wrap_content"
              android:layout_alignParentRight="true"/>

</RelativeLayout>

自定义适配器:

public class CustomAdapter extends BaseAdapter {
        private List<Profile> profiles;
        private LayoutInflater inflater;
        private TextView tvName;
        private CheckBox cbEnabled;

        public CustomAdapter(List<Profile> profiles) {
            this.profiles = profiles;
            inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        }

        public int getCount() {
            return profiles.size();
        }

        public Object getItem(int position) {
            return profiles.get(position);
        }

        public long getItemId(int position) {
            return position;
        }

        public View getView(final int position, View convertView, ViewGroup parent) {
            View row = inflater.inflate(R.layout.main_lv_item, null);

            final Profile profile = profiles.get(position);
            tvName = (TextView) row.findViewById(R.id.main_lv_item_textView);
            registerForContextMenu(tvName);
            cbEnabled = (CheckBox) row.findViewById(R.id.main_lv_item_checkBox);
            tvName.setText(profile.getName());
            if (profile.isEnabled()) {
                cbEnabled.setChecked(true);
            }

            tvName.setOnClickListener(new OnClickListener() {
                public void onClick(View v) {
                    Bundle bundle = new Bundle();
                    bundle.putString(PROFILE_NAME_KEY, profile.getName());
                    Intent intent = new Intent(context, GuiProfile.class);
                    intent.putExtras(bundle);
                    startActivity(intent);
                }
            });

            tvName.setOnLongClickListener(new OnLongClickListener() {
                public boolean onLongClick(View v) {
                    selectedProfileName = ((TextView) v).getText().toString();
                    return false;
                }
            });

            cbEnabled.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
                public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
                    if (!profile.isEnabled()) {
                        for (Profile profile : profiles) {
                            if (profile.isEnabled()) {
                                profile.setEnabled(false);
                                Database.getInstance().storeProfile(profile);
                            }
                        }
                    }

                    profile.setEnabled(isChecked);
                    Database.getInstance().storeProfile(profile);
                    updateListView();
                }
            });

            return row;
        }
    }

任何帮助都将不胜感激。

2 个答案:

答案 0 :(得分:1)

实际上,正在发生的事情不是错误,而是Android中的一个不幸的打字问题。将背景颜色设置为R.color.black时,将其设置为id而不是实际颜色。由于颜色只是整数,而ids只是整数,它不知道差异,并将其解释为颜色。实现此目的的实际方法是将其设置为从Resources类获取的颜色,如下所示:

int black = activity.getResources().getColor(android.R.color.black);
view.setBackgroundColor(black);

希望这有帮助。

答案 1 :(得分:0)

您没有发布用于设置颜色的代码,但我遇到了同样的问题,解决方案是做

setBackgroundColor(0xFF000000); 

而不是

setBackgroundColor(R.color.black);  

这似乎是Android中的一个错误,因为R.color.black不是灰色的。所有这些设置代码都被多次调用,只需要完成一次。转换参数convertView将在第一次为空时 - 那是你膨胀的时候。之后只需使用convertView。