| android Programming Glossary: mpinnedheadertextcolorPinned groups in ExpandableListView http://stackoverflow.com/questions/10613552/pinned-groups-in-expandablelistview  MyExpandableListAdapter mAdapter PinnedHeaderExpListView elv private int mPinnedHeaderBackgroundColor private int mPinnedHeaderTextColor public void onCreate Bundle savedInstanceState super.onCreate savedInstanceState setContentView R.layout.main Set up our.. R.id.list elv.setAdapter mAdapter mPinnedHeaderBackgroundColor getResources .getColor android.R.color.black mPinnedHeaderTextColor getResources .getColor android.R.color.white elv.setGroupIndicator null View h LayoutInflater.from this .inflate R.layout.header.. header.setText title if alpha 255  header.setBackgroundColor mPinnedHeaderBackgroundColor  header.setTextColor mPinnedHeaderTextColor  else  header.setBackgroundColor Color.argb alpha  Color.red mPinnedHeaderBackgroundColor  Color.green mPinnedHeaderBackgroundColor.. 
 |