android:Theme.Material.Light requires API level 21 (current min is 8)

前端 未结 4 1929
盖世英雄少女心
盖世英雄少女心 2021-01-31 15:04

I want to use Material Theme in my application which has minimum sdk version of 8. As per docs - \"The material theme is only available in Android 5.0 (API level 21) and above.

4条回答
  •  天涯浪人
    2021-01-31 15:34

    In your NameActivity.java file import the following:

    import android.support.v7.widget.Toolbar;
    

    Comment the previous one:

    //import android.widget.Toolbar;
    

    With this the problem is solved.

提交回复
热议问题