How can I grey out one of my list item entirely, I dont mean set background to grey or sth. else.
public View getView(Context context)
{
View view = _inflater.inflate(R.layout.transfer_item, null);
view.setBackgroundColor(_unmoveable ? 0xFF111111 : Color.TRANSPARENT);
//view.setAlpha(0.5f);//? it says method did not exist ...

setTextColorandsetBackgroundColorto set both to gray and it will have the same effect. – Barak Jun 16 '12 at 13:06