Fix card background (pre-Lollipop)

This commit is contained in:
2016-03-04 11:46:10 -05:00
parent 299c6a0c1d
commit 616322cd35

View File

@@ -687,7 +687,7 @@ public class ListHabitsFragment extends Fragment
if (android.os.Build.VERSION.SDK_INT >= 21) if (android.os.Build.VERSION.SDK_INT >= 21)
llInner.setBackgroundResource(R.drawable.ripple_white); llInner.setBackgroundResource(R.drawable.ripple_white);
else else
llInner.setBackgroundColor(Color.WHITE); llInner.setBackgroundResource(R.drawable.card_background);
} }
return view; return view;