Drawable as Background for CardView

后端 未结 11 977
傲寒
傲寒 2020-12-08 02:29

the CardView ( android.support.v7.cardview ) stays white even though I set a backround drawable via android:backround - The documentation gives me the feeling that it should

11条回答
  •  萌比男神i
    2020-12-08 02:51

    for drawable or color just use:

    cvSellerShopp.setBackgroundResource(R.drawable.ic_action_add_image);
    

    for color use:

     cvSellerShopp.setCardBackgroundColor(R.color.colorPrimary);
    

    but this one does not produce the intended results

提交回复
热议问题