我在 Eclipse 中有项目,使用材料主题,我希望此主题已在应用程序中,如果在以后的版本中使用Android版例如 S Converter ,或来自Google的应用程序。很简单,您需要这样做才能与以前的版本兼容。
答案 0 :(得分:2)
AppCompat库的第21版为21之前的设备引入了Material主题。
首先,您需要将AppCompat库添加到项目中。
完成后,您只需将主题更新为Theme.AppCompat
或Theme.AppCompat.Light
,如下所示:
<style name="Theme.MyTheme" parent="Theme.AppCompat.Light">
<!-- Set your app's colors for the ActionBar and View widgets here -->
<item name="colorPrimary">@color/my_primary</item>
<item name="colorPrimaryDark">@color/my_primary_dark</item>
<item name="colorAccent">@color/my_accent</item>
</style>
最后,将您的活动更新为从AppCompat&#39; ActionBarActivity
扩展。