我正在使用工具栏来替换ActionBar。一切都很顺利:
工具栏仅显示主要活动。
如果我尝试按照主要活动的方式调用任何活动上的工具栏,那么当我调用该活动时,应用程序将崩溃。
如果我尝试在onCreateOptionsMenu上对工具栏进行充气,那么当我调用它时,该活动就会崩溃。
如何在我的所有活动中调用/使用相同的工具栏,而不仅仅是主要工具栏。
这里有一些代码:
public android.support.v7.widget.Toolbar toolbar;
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_about);
toolbar = (android.support.v7.widget.Toolbar) findViewById(R.id.app_bar_id);
setSupportActionBar(toolbar);
}
上面的代码可以成功调用工具栏,但只有在主活动中使用它时它才有效,如果我用上面显示的相同方法调用工具栏,其余的活动都会崩溃。
请帮忙吗?
谢谢。
编辑:
根据请求,这里有更多代码片段:
app_bar.xml:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/actionbarbgcolor"
app:popupTheme="@style/popUpTheme">
</android.support.v7.widget.Toolbar>
themes.xml(styles.xml replacement):
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools">
<style name="DefaultActionBarTheme" parent="Theme.AppCompat.NoActionBar">
<item name="android:windowNoTitle">true</item>
<item name="android:windowActionBar">false</item>
<item name="android:textColorPrimary">@color/windowbackgroundcolor</item>
<item name="android:windowBackground">@color/windowbackgroundcolor</item>
</style>
<style name="popUpTheme">
<item name="android:textColor">@color/actionbarbgcolor</item>
</style>
</resources>
答案 0 :(得分:43)
我找到了解决方案,我忘了将工具栏包含在其余的活动布局文件中。所以我在调用一个在该活动的布局中不存在的工具栏。
我只把它包含在主要活动中,这就是为什么它在那里工作并在其余部分崩溃。
对于初学者,这意味着您希望工具栏工作的每个布局xml文件中必须存在以下代码:
<include layout="@layout/app_bar"/>
请注意&#34; app_bar&#34;只是我称之为工具栏的名称,你的名字可能不同。
祝你好运。答案 1 :(得分:2)
您可以使用包含工具栏
的关注代码创建布局<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true"
tools:context="com.tejariapp.myapplicationtester1.MainActivity">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.AppBarLayout>
</android.support.design.widget.CoordinatorLayout>
注意身高值,如果你没有设置 wrap_content 值,你可以看到其他元素在工具栏下方 然后在你想拥有工具栏的每个布局中,只需编写这个
<include layout="@layout/toolabar" />