在所有活动中使用工具栏 (Android)
Use Toolbar across all activities (Android)
我正在使用工具栏替换操作栏。一切顺利,遇到一个问题:
工具栏仅显示在主activity。
如果我尝试调用任何 activity 上的工具栏,就像我对主 activity 所做的一样,当我调用 activity.
时,应用程序将崩溃
如果我尝试在 CreateOptionsMenu 上膨胀工具栏,那 activity 会在我调用它时崩溃。
我如何 call/use 在所有活动中使用相同的工具栏,而不仅仅是主要活动。
下面是部分代码:
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);
}
上面的代码可以成功调用工具栏,但只有当我在主要 activity 上使用它时它才有效,如果我用上面显示的相同方法在那里调用工具栏,其余活动将崩溃.
有什么帮助吗?
谢谢。
已编辑:
根据要求,这里有更多代码片段:
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替换):
<?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>
我找到了解决方案,我忘了在其余的活动布局文件中包含工具栏。所以我正在调用 activity 布局中不存在的工具栏。
我只将它包含在主要 activity 中,这就是为什么它在那里工作并在其余部分崩溃的原因。
对于初学者,这意味着以下代码必须存在于您希望工具栏在其中工作的每个布局 xml 文件中:
<include layout="@layout/app_bar"/>
请注意,"app_bar" 只是我为工具栏命名的名称,您的可以不同。
祝你好运。
您可以使用包含工具栏的后续代码创建布局
<?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" />
我正在使用工具栏替换操作栏。一切顺利,遇到一个问题:
工具栏仅显示在主activity。
如果我尝试调用任何 activity 上的工具栏,就像我对主 activity 所做的一样,当我调用 activity.
时,应用程序将崩溃如果我尝试在 CreateOptionsMenu 上膨胀工具栏,那 activity 会在我调用它时崩溃。
我如何 call/use 在所有活动中使用相同的工具栏,而不仅仅是主要活动。
下面是部分代码:
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);
}
上面的代码可以成功调用工具栏,但只有当我在主要 activity 上使用它时它才有效,如果我用上面显示的相同方法在那里调用工具栏,其余活动将崩溃.
有什么帮助吗?
谢谢。
已编辑:
根据要求,这里有更多代码片段:
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替换):
<?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>
我找到了解决方案,我忘了在其余的活动布局文件中包含工具栏。所以我正在调用 activity 布局中不存在的工具栏。
我只将它包含在主要 activity 中,这就是为什么它在那里工作并在其余部分崩溃的原因。
对于初学者,这意味着以下代码必须存在于您希望工具栏在其中工作的每个布局 xml 文件中:
<include layout="@layout/app_bar"/>
请注意,"app_bar" 只是我为工具栏命名的名称,您的可以不同。
祝你好运。
您可以使用包含工具栏的后续代码创建布局
<?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" />