微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

android – 当应用程序的minSdkVersion为21时,我的活动应该扩展什么?

我是 AndroidAndroid Studio的新手.我创建了一个新项目,我已将minSdkVersion指定为21并将目标指定为23.

完成AS创建活动后,我发现认情况下MainActivity正在扩展AppCompatActivity.

我读到了AppCompatActivity here

它表示它是使用support library操作栏功能的活动的Base类.

现在我的问题是:

>由于我的应用程序的minSdkVersion为21,为什么我需要我的活动来扩展AppCompatActivity?
>为什么AS使我的活动认扩展AppCompatActivity?
>考虑到我的minSdkVerion,我的活动是否有必要扩展AppCompatActivity或只是扩展Activity就足够了?
>如果我的行为不扩展AppCompatActivity,我会想念什么?

任何解释都会非常有用.谢谢

解决方法

如果您使用操作栏,我认为您应该扩展AppCompatActivity

Read more here

Beginning with Android 3.0 (API level 11),all activities that use the default theme have an ActionBar as an app bar. However,app bar features have gradually been added to the native ActionBar over varIoUs Android releases. As a result,the native ActionBar behaves differently depending on what version of the Android system a device may be using. By contrast,the most recent features are added to the support library’s version of Toolbar,and they are available on any device that can use the support library.

For this reason,you should use the support library’s Toolbar class to implement your activities’ app bars. Using the support library’s toolbar helps ensure that your app will have consistent behavior across the widest range of devices. For example,the Toolbar widget provides a material design experience on devices running Android 2.1 (API level 7) or later,but the native action bar doesn’t support material design unless the device is running Android 5.0 (API level 21) or later.

原文地址:https://www.jb51.cc/android/317632.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐