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

  • Home
  • SEARCH
  • 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 7995759
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T14:30:57+00:00 2026-06-04T14:30:57+00:00

I have an ExpandableListView in an activity. The code is: final ExpandableListView expandableListView =

  • 0

I have an ExpandableListView in an activity. The code is:

  final ExpandableListView expandableListView = (ExpandableListView)findViewById(R.id.expandableListView1);  
  expandableListView.setDivider(null);
  expandableListView.setCacheColorHint(0);
  expandableListView.setGroupIndicator(null);
  final EEInterviewExpandableListAdapter adapter = new EEInterviewExpandableListAdapter(this);  
  expandableListView.setAdapter(adapter);  

And related code in the adapter is:

public View getChildView(int groupPosition, int childPosition,
        boolean isLastChild, View convertView, ViewGroup parent) {
    String string = pageArray.get(groupPosition).get(childPosition); 
    boolean highlight=false;
    return getChildGenericView(string,highlight);    
}
public TextView getChildGenericView(String string,boolean highlight)    
{    
    // Layout parameters for the ExpandableListView    
    AbsListView.LayoutParams layoutParams = new AbsListView.LayoutParams(    
            ViewGroup.LayoutParams.FILL_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT);
    TextView text = new TextView(activity);    
    text.setLayoutParams(layoutParams);    
    // Center the text vertically    
    text.setGravity(Gravity.CENTER | Gravity.LEFT);    
    // Set the text starting position    
    text.setPadding(0, 2, 0, 2);    
    text.setText(string.trim());    
    text.setBackgroundResource(R.drawable.childsep);
    if(highlight)
        text.setTextColor(R.color.expchdhighlightcolor);
    else
        text.setTextColor(R.color.expchdcolor);
    text.setTextSize(EEEnv.EEfontSize);
   return text;    
}    

My problem is the settextcolor() doesn’t work. I searched on the web. And it is said that expandableListView.setCacheColorHint(0); can resolve it. But the problem is still there. Anybody know this issue?

  • 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-04T14:30:59+00:00Added an answer on June 4, 2026 at 2:30 pm

    You need to access certain XML resources like this:

    text.setTextColor(getResources().getColor(R.color.expchdhighlightcolor));
    

    Otherwise you are passing the unique id that references the resource… Notice the difference when you run this:

    Log.v("Test", "Not what I expected: " + R.color.expchdhighlightcolor);
    Log.v("Test", "The hex value in decimal: " + getResources().getColor(R.color.expchdhighlightcolor));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have created an ExpandableListView with the following code: <ExpandableListView android:id=@+id/android:list android:layout_width=wrap_content android:layout_height=0dp android:layout_marginTop=5dp
Have converted devise new session from erb to Haml but doens't work, this is
I have an ExpandableListView and an ExpandableListAdapter. When I call notifyDataSetChanged() in my adapter,
I have an activity that extends ExpandableListActivity. I use SimpleCursorTreeAdapter to fill ExpandableListView. My
Im trying to implement an activity that uses ExpandableListView and I have gotten so
I have added an ExpandableListView to a LinearLayout in an Activity. On the emulator,
I have an Activity that sets an ExpandableListAdapter for an ExpandableListView. I would like
I have this code for an expandable list, I want to have a checkbox
I'm new to this ExpandableListView and I desperately need your help please. I'm using
I have an ExpandableListView, I've made custom adapter and ExpandListGroup class which holds Name

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.