当我将工具栏应用到我的应用程序中时,我遇到了这个问题,当我尝试运行app时它崩溃了.我使用了之前的所有帖子但没有运气.
这是我的代码:
Style.xml
<style name="ToolbarStyle" parent="@style/theme.AppCompat.light"> <item name="windowActionbar">false</item> <item name="windowNoTitle">true</item> </style>
我试过parent =“@ style / theme.AppCompat.light.NoActionbar”但没有用.
Toolbar.xmal
<?xml version="1.0" enCoding="utf-8"?><androID.support.v7.Widget.Toolbar xmlns:androID="http://schemas.androID.com/apk/res/androID" xmlns:local="http://schemas.androID.com/apk/res-auto" androID:ID="@+ID/toolbar" androID:layout_wIDth="match_parent" androID:layout_height="wrap_content" androID:background="?attr/colorPrimary" androID:minHeight="?attr/actionbarSize" androID:theme="@style/ToolbarStyle" />
Manifest.axml
<application androID:label="Capzure" androID:theme="@style/ToolbarStyle" androID:icon="@drawable/Icon"></application>
谢谢.
解决方法:
你的主题应该是这样的,并删除@ style /:
<style name="MyMaterialtheme" parent="theme.AppCompat.NoActionbar"> <item name="windowNoTitle">true</item> <item name="windowActionbar">false</item> ...</style>
然后,不要在< application />中定义主题.标签.仅使用您要使用材料设计主题的活动来定义它,即在< activity>中.标签.
如果您的活动扩展了要使用PreferenceFragment开始事务的PreferenceActivity,AppCompatActivity或ActionBaractivity,请将主题更改为:
<style name="MyMaterialtheme" parent="theme.AppCompat.light.DarkActionbar"> <item name="windowNoTitle">true</item> <item name="windowActionbar">true</item> ...</style>
并从工具栏中删除此行:
androID:theme="@style/ToolbarStyle"
总结 以上是内存溢出为你收集整理的android – 请勿在主题中请求Window.FEATURE_ACTION_BAR并将windowActionBar设置为false以使用工具栏代替全部内容,希望文章能够帮你解决android – 请勿在主题中请求Window.FEATURE_ACTION_BAR并将windowActionBar设置为false以使用工具栏代替所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)