CardView not showing Shadow in Android L

前端 未结 17 962
一生所求
一生所求 2020-11-28 02:50

My Cardview inside Listview is not showing shadow in Android L(Nexus 5). Also the round edges are not properly shown. Here is the code for Listview\'s Adapter View :

17条回答
  •  孤独总比滥情好
    2020-11-28 03:09

    First of all make sure that following dependencies are proper added and compiled in build.gradle file

        dependencies {
        ...
        compile 'com.android.support:cardview-v7:21.0.+'
    
        }
    

    and after this try the following code :

         
         

    problem rises in Android L beacuse layout_margin attribute is not added

提交回复
热议问题