Here you can find the source of getPressedDrawable(int color)
protected static StateListDrawable getPressedDrawable(int color)
//package com.java2s; import android.R; import android.graphics.drawable.ColorDrawable; import android.graphics.drawable.StateListDrawable; public class Main { protected static StateListDrawable getPressedDrawable(int color) { StateListDrawable drawable = new StateListDrawable(); drawable.addState(new int[] { R.attr.state_pressed }, new ColorDrawable(color)); return drawable; }//from w w w . j a va2s . c o m }