1

在我的应用程序中,我将联系人导入列表视图,试图更改列表视图的背景颜色,我可以更改整个列表视图的颜色,但是,我希望仅对具有地址和休息保持不变的联系人进行颜色更改。

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

        View view = convertView;

        if (view == null) {
                        LayoutInflater inflater = (LayoutInflater) (getContext()
                                        .getSystemService(Context.LAYOUT_INFLATER_SERVICE));
                        view = inflater.inflate(renderer, null);
                }

                TextView text = (TextView) view.findViewById(R.id.name);
                ImageView photo = (ImageView) view.findViewById(R.id.photo);

                TextView textContNo = (TextView) view.findViewById(R.id.contactno);
                TextView textEmailId = (TextView) view.findViewById(R.id.emailId);

                Profile contact = listCont.get(position);
                text.setText(contact.getName());
                contact.getName();
                contact.getId();

                text.setTag(contact);
                text.setOnTouchListener(new OnTouchListener() {

                        @Override
                        public boolean onTouch(View v, MotionEvent event) {
                                Profile myContact= (Profile) v.getTag();

                        Intent intent = new Intent();
                        intent.putExtra("type", profileType);
                        intent.putExtra("name", myContact.getName());
                        intent.putExtra("email", myContact.getEmail());
                        intent.putExtra("contactid", myContact.getId());
                        intent.putExtra("address", myContact.getAddress());
                        intent.putExtra("city", myContact.getCity());
                        intent.putExtra("state", myContact.getState());
                        intent.putExtra("countryName", myContact.getCountryName());
                        intent.putExtra("postalCode", myContact.getPostalCode());
                        intent.putExtra("website", myContact.getWebSite());
                        intent.putExtra("mobileNumber", myContact.getMobileNo());
                        intent.putExtra("phoneNumber", myContact.getLandLineNo());
                        Log.d(TAG, "On Activity Result Method : 1");
                        activity.setResult(100, intent);

                        activity.finish();
                        Constants.loadEntries.cancel(true);
                                return false;
                        }
                });



                if(contact.getPhoto() !=null && !contact.getPhoto().equals("")){
                        photo.setImageBitmap(contact.getPhoto());
                }else{
                        photo.setImageResource(R.drawable.profile);
                }

                photo.setTag(contact);
                photo.setOnTouchListener(new OnTouchListener() {

                        @Override
                        public boolean onTouch(View v, MotionEvent event) {
                                Profile myContact= (Profile)v.getTag();

                        Intent intent = new Intent();
                        intent.putExtra("type", profileType);
                        intent.putExtra("name", myContact.getName());
                        intent.putExtra("email", myContact.getEmail());
                        intent.putExtra("contactid", myContact.getId());
                        intent.putExtra("address", myContact.getAddress());
                        intent.putExtra("website", myContact.getWebSite());
                        intent.putExtra("mobileNumber", myContact.getMobileNo());
                        intent.putExtra("phoneNumber", myContact.getLandLineNo());
                        Log.d(TAG, "On Activity Result Method : 2");
                        activity.setResult(100, intent);
                        activity.finish();
                        Constants.loadEntries.cancel(true);
                                return false;
                        }
                });

                textContNo.setText(contact.getNumber());
                textEmailId.setText(contact.getEmail());


                view.setClickable(true);
        view.setTag(contact);
        view.setOnClickListener(new OnClickListener() {

                        @Override
                        public void onClick(View v) {
                                Profile myContact= (Profile) v.getTag();

                        Intent intent = new Intent();
                        intent.putExtra("type", profileType);
                        intent.putExtra("name", myContact.getName());
                        intent.putExtra("email", myContact.getEmail());
                        intent.putExtra("contactid", myContact.getId());
                        intent.putExtra("address", myContact.getAddress());
                        intent.putExtra("website", myContact.getWebSite());
                        intent.putExtra("mobileNumber", myContact.getMobileNo());
                        intent.putExtra("phoneNumber", myContact.getLandLineNo());
                        Log.d(TAG, "On Activity Result Method : 3");
                        activity.setResult(100, intent);
                        activity.finish();
                        Constants.loadEntries.cancel(true);
                        }
                });

                LinearLayout layout = (LinearLayout)view.findViewById(R.id.profilelayout);
                layout.setTag(contact);
                layout.setOnClickListener(new OnClickListener() {

                        @Override
                        public void onClick(View v) {
                                Profile myContact= (Profile) v.getTag();
                        Intent intent = new Intent();
                        intent.putExtra("type", profileType);
                        intent.putExtra("name", myContact.getName());
                        intent.putExtra("phoneNumber", myContact.getLandLineNo());
                        intent.putExtra("email", myContact.getEmail());
                        intent.putExtra("contactid", myContact.getId());
                        intent.putExtra("address", myContact.getAddress());
                        intent.putExtra("website", myContact.getWebSite());
                        intent.putExtra("mobileNumber", myContact.getMobileNo());
                        Log.d(TAG, "On Activity Result Method : 4");
                        activity.setResult(100, intent);
                        activity.finish();
                        Constants.loadEntries.cancel(true);
                        }
                });


                if (position % 2 == 0)
                        view.setBackgroundResource(R.drawable.listshape);
                else
                        view.setBackgroundResource(R.drawable.favoritebody);
        return view;
    }

只有当我有联系人地址时如何更改颜色?

4

5 回答 5

1

替换下面的代码

 if (position % 2 == 0)
                        view.setBackgroundResource(R.drawable.listshape);
                else
                        view.setBackgroundResource(R.drawable.favoritebody);

经过

if (!contact.getAddress().isEmpty() ){
    view.setBackgroundColor(R.drawable.hasaddress);
    }
else
{



     if (position % 2 == 0)
                            view.setBackgroundResource(R.drawable.listshape);
                    else
                            view.setBackgroundResource(R.drawable.favoritebody);
    }

-preeya

于 2012-12-28T06:12:04.123 回答
0

如果您只想更改某些行的任何属性,您需要为各个行定义单独的布局,或者在 ListView 的 bindView() 方法中,更改您需要的属性。

于 2012-12-28T06:07:13.313 回答
0

您可以通过在 res dir 中添加一个颜色文件夹来实现这一点,并在颜色文件夹中为颜色定义一个 xml 并像下面这样定义并将其保存为 anyname.xml

    <?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="true" 
        android:color="@color/whiteColor"></item>
    <item android:color="@color/bluetxt"></item> 
</selector>

并在您显示信息的定义的文本视图中提供此 xml 的参考

于 2012-12-28T06:12:02.330 回答
0

在活动/片段中声明您自己的列表视图以及 SimpleAdapter

private ListView myListView;
private SimpleAdapter adapter;

从布局中找到您的列表视图

myListView = (ListView)v.findViewById(R.id.my_list_view);

初始化您的适配器并将其绑定到您的列表视图,如下所示

adapter = new SimpleAdapter(myListView.getContext(),
            my_profile_arrayList,
            R.layout.listview_layout_for_the_contact_with_different_color, new String[] { "type",
                    "name", "contactid" }, new int[] {
                    R.id.profile_type,
                    R.id.profile_name,
                    R.id.profile_contactid });

    myListView .setAdapter(adapter);

只需定义您自己的listview_layout_for_the_contact_with_different_color

于 2012-12-28T06:21:52.580 回答
0

使用这个 getView

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

    View view = convertView;

    if (view == null) {
        LayoutInflater inflater = (LayoutInflater) (getContext()
                .getSystemService(Context.LAYOUT_INFLATER_SERVICE));
        view = inflater.inflate(renderer, null);
    }

    TextView text = (TextView) view.findViewById(R.id.name);
    ImageView photo = (ImageView) view.findViewById(R.id.photo);

    TextView textContNo = (TextView) view.findViewById(R.id.contactno);
    TextView textEmailId = (TextView) view.findViewById(R.id.emailId);

    Profile contact = listCont.get(position);
    text.setText(contact.getName());
    contact.getName();
    contact.getId();

    text.setTag(contact);
    text.setOnTouchListener(new OnTouchListener() {

        @Override
        public boolean onTouch(View v, MotionEvent event) {
            Profile myContact= (Profile) v.getTag();

            Intent intent = new Intent();
            intent.putExtra("type", profileType);
            intent.putExtra("name", myContact.getName());
            intent.putExtra("email", myContact.getEmail());
            intent.putExtra("contactid", myContact.getId());
            intent.putExtra("address", myContact.getAddress());
            intent.putExtra("city", myContact.getCity());
            intent.putExtra("state", myContact.getState());
            intent.putExtra("countryName", myContact.getCountryName());
            intent.putExtra("postalCode", myContact.getPostalCode());
            intent.putExtra("website", myContact.getWebSite());
            intent.putExtra("mobileNumber", myContact.getMobileNo());
            intent.putExtra("phoneNumber", myContact.getLandLineNo());
            Log.d(TAG, "On Activity Result Method : 1");
            activity.setResult(100, intent);

            activity.finish();
            Constants.loadEntries.cancel(true);
            return false;
        }
    });



    if(contact.getPhoto() !=null && !contact.getPhoto().equals("")){
        photo.setImageBitmap(contact.getPhoto());
    }else{
        photo.setImageResource(R.drawable.profile);
    }

    photo.setTag(contact);
    photo.setOnTouchListener(new OnTouchListener() {

        @Override
        public boolean onTouch(View v, MotionEvent event) {
            Profile myContact= (Profile)v.getTag();

            Intent intent = new Intent();
            intent.putExtra("type", profileType);
            intent.putExtra("name", myContact.getName());
            intent.putExtra("email", myContact.getEmail());
            intent.putExtra("contactid", myContact.getId());
            intent.putExtra("address", myContact.getAddress());
            intent.putExtra("website", myContact.getWebSite());
            intent.putExtra("mobileNumber", myContact.getMobileNo());
            intent.putExtra("phoneNumber", myContact.getLandLineNo());
            Log.d(TAG, "On Activity Result Method : 2");
            activity.setResult(100, intent);
            activity.finish();
            Constants.loadEntries.cancel(true);
            return false;
        }
    });

    textContNo.setText(contact.getNumber());
    textEmailId.setText(contact.getEmail());


    view.setClickable(true);
    view.setTag(contact);
    view.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {
            Profile myContact= (Profile) v.getTag();

            Intent intent = new Intent();
            intent.putExtra("type", profileType);
            intent.putExtra("name", myContact.getName());
            intent.putExtra("email", myContact.getEmail());
            intent.putExtra("contactid", myContact.getId());
            intent.putExtra("address", myContact.getAddress());
            intent.putExtra("website", myContact.getWebSite());
            intent.putExtra("mobileNumber", myContact.getMobileNo());
            intent.putExtra("phoneNumber", myContact.getLandLineNo());
            Log.d(TAG, "On Activity Result Method : 3");
            activity.setResult(100, intent);
            activity.finish();
            Constants.loadEntries.cancel(true);
        }
    });

    LinearLayout layout = (LinearLayout)view.findViewById(R.id.profilelayout);
    layout.setTag(contact);
    layout.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {
            Profile myContact= (Profile) v.getTag();
            Intent intent = new Intent();
            intent.putExtra("type", profileType);
            intent.putExtra("name", myContact.getName());
            intent.putExtra("phoneNumber", myContact.getLandLineNo());
            intent.putExtra("email", myContact.getEmail());
            intent.putExtra("contactid", myContact.getId());
            intent.putExtra("address", myContact.getAddress());
            intent.putExtra("website", myContact.getWebSite());
            intent.putExtra("mobileNumber", myContact.getMobileNo());
            Log.d(TAG, "On Activity Result Method : 4");
            activity.setResult(100, intent);
            activity.finish();
            Constants.loadEntries.cancel(true);
        }
    });


    if (position % 2 == 0)
        view.setBackgroundResource(R.drawable.listshape);
    else
        view.setBackgroundResource(R.drawable.favoritebody);

    if (contact.getAddress() == null || contact.getAddress().length == 0){
        view.setBackgroundColor(android.R.color.background_dark);  //Set your own color here when address is null
    } else {
        view.setBackgroundColor(android.R.color.background_light);  //Set your own color here when address is present
    }

    return view;
}
于 2012-12-28T06:47:14.150 回答