其他分享
首页 > 其他分享> > android-活动如何在不扩展AppCompatActivity的情况下使用工具栏

android-活动如何在不扩展AppCompatActivity的情况下使用工具栏

作者:互联网

我有一个活动HomeView,它已经扩展了另一个活动,它不能扩展AppCompatActivity.但是HomeView需要有一个工具栏. Android文档说,任何需要具有工具栏的活动都必须扩展AppCompatActivity.

我如何解决这个限制?

解决方法:

您需要实现AppCompatCallback并使用AppCompatDelegate.这是一篇有关如何使用它的出色文章:https://medium.com/google-developer-experts/how-to-add-toolbar-to-an-activity-which-doesn-t-extend-appcompatactivity-a07c026717b3#.nuyghrgr9并查看https://developer.android.com/reference/android/support/v7/app/AppCompatDelegate.html以了解委托哪种方法.

AppCompatDelegate

此类表示一个委托,您可以用来将AppCompat的支持扩展到任何Activity.

使用AppCompatDelegate时,应使用其中公开的任何方法,而不应使用相同名称的Activity方法.这适用于:

addContentView(android.view.View, android.view.ViewGroup.LayoutParams)
setContentView(int)
setContentView(android.view.View)
setContentView(android.view.View, android.view.ViewGroup.LayoutParams)
requestWindowFeature(int)
invalidateOptionsMenu()
startSupportActionMode(android.support.v7.view.ActionMode.Callback)
setSupportActionBar(android.support.v7.widget.Toolbar)
getSupportActionBar()
getMenuInflater()

还有一些Activity生命周期方法应委托给代理:

onCreate(android.os.Bundle)
onPostCreate(android.os.Bundle)
onConfigurationChanged(android.content.res.Configuration)
setTitle(CharSequence)
onStop()
onDestroy()

标签:appcompatactivity,android
来源: https://codeday.me/bug/20191119/2036856.html