appcompat-v7 v21.0.0 causing crash on Samsung devices with Android v4.2.2

后端 未结 9 923
北海茫月
北海茫月 2020-12-04 11:39

We just changed our application to use the appcompat-v7 support library in order to take advantage of the support actionbar and support Material themes. Using <

9条回答
  •  隐瞒了意图╮
    2020-12-04 12:17

    Replace

    public class class_name extends AppCompatActivity
    {
    
    .........
    
    }
    

    With

    public class class_name extends Activity
    {
    
    .........
    
    }
    

    This helped me.

提交回复
热议问题