Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9225723
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T04:39:10+00:00 2026-06-18T04:39:10+00:00

i have a listview which has an adapter, which worked properly, but then i

  • 0

i have a listview which has an adapter, which worked properly, but then i added some code because i wanted the rows to be different colors, after that, the onclick color doesnt show up.

Here is the code i added:

if (position % 2 == 0)
            vi.findViewById(R.id.parentL).setBackgroundColor(ctx.getResources().getColor(R.color.row1));
        else
            vi.findViewById(R.id.parentL).setBackgroundColor(ctx.getResources().getColor(R.color.row2));
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T04:39:11+00:00Added an answer on June 18, 2026 at 4:39 am

    TL:DR

    • Use selectors for listview items
    • You need to set your overall listview background to be to transparent.

    Instructions

    First, you need to set your ListView to to be transparent

    Inside your Adapter’s onCreate() method, set:

     ((ListView) findViewById(R.id.main_list)).setBackgroundColor(0);
    

    Next, inside Adapter‘s getView() include the following code

    if (position%2 == 0) {
        view.setBackgroundResource(R.drawable.selector);
    } else {
        view.setBackgroundResource(R.drawable.selector2);
    }
    

    where selector.xml is

    <?xml version="1.0" encoding="utf-8"?>
    <selector xmlns:android="http://schemas.android.com/apk/res/android" >
        <item android:state_pressed="false" android:state_focused="false"
            android:drawable="@color/blue" />
        <item android:state_enabled="false" android:state_focused="true"
            android:drawable="@color/translucent_red" />
        <item android:state_enabled="true" 
         android:state_pressed="true" android:drawable="@color/translucent_red" />
        <item android:state_enabled="true"
         android:state_focused="true" android:drawable="@color/translucent_red" />
        <item
         android:drawable="@color/android:transparent" />
    </selector>
    

    and selector2.xml is

    <?xml version="1.0" encoding="utf-8"?>
    <selector xmlns:android="http://schemas.android.com/apk/res/android" >
        <item android:state_pressed="false" android:state_focused="false"
            android:drawable="@color/green" />
        <item android:state_enabled="false" android:state_focused="true"
            android:drawable="@color/opaque_red" />
        <item android:state_enabled="true" 
         android:state_pressed="true" android:drawable="@color/opaque_red" />
        <item android:state_enabled="true"
         android:state_focused="true" android:drawable="@color/opaque_red" />
        <item
         android:drawable="@color/android:transparent" />
    </selector>
    

    don’t forget to include a colors.xml

    <?xml version="1.0" encoding="utf-8"?>
    <resources>
       <color name="opaque_red">#f00</color>
       <color name="translucent_red">#80ff0000</color>
       <color name="blue">#00f</color>
       <color name="green">#0f0</color>
    </resources>
    

    Sample Project

    here are the files for a sample project I configured for you. You probably want to do a Project > Clean before anything else.

    Some files can be ignored in this app, since I modified an existing sample that did something very different.

    Screenshot

    here is what my example app looked like

    enter image description here
    enter image description here
    enter image description here

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a custom adapter for my ListView which has multiple TextViews. I want
I have a ListView which contains custom rows. This custom row has following UI
I have a custom listview by using an adapter which has alternate background color.
I have this code which has to get a listview and populate it with
I have a custom adapter populating a listview. Each row has a checkbox which
I have a ListView which has been constructed, styled and had an adapter set
I have a listview which has its datasource changed after update of a search
I have a Custom ListView which has an ImageView and a TextView. and i
I have ListView in my project which has ListItems as in the form of
I have a tab view which has a listview in one of these tabs.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.