如何仅为单个 activity 更改工具栏
How to change toolbar only for a single activity
我的应用程序有几个活动。对于所有这些工具栏,工具栏都是从 Main activity 隐式继承的。我只想为单个 activity、 设置一个特定的工具栏,但对于所有其他工具栏 - 我想继续从主工具栏继承它们。
如果我尝试为我的单曲设置一个新的工具栏 activity - 我会遇到一个众所周知的异常 This Activity already has an action bar
但要修复它,我可以添加到我的 AppTheme
样式中:
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
它允许我设置不同的工具栏,
但问题是:在那种情况下,对于每个 activity,我需要明确设置一个工具栏,但我想从主工具栏继承一个工具栏.
请在下面找到一些代码:
我的主工具栏
<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"
app:popupTheme="@style/AppTheme.PopupOverlay" android:layout_weight="1">
</android.support.v7.widget.Toolbar>
</android.support.design.widget.AppBarLayout>
和样式:
<style name="AppTheme" parent="Theme.AppCompat.Light">
<!-- Customize your theme here. -->
<item name="colorPrimary">@android:color/white</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
<style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Light"/>
<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light"/>
和 manifest.xml
中的主要 activity
<activity
android:name=".."
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
..
</intent-filter>
</activity>
和 MainActivity onCreate
方法:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Toolbar toolbar = findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
...
}
要共享单个工具栏,最好的办法是将工具栏布局提取到单独的布局文件中,例如 app_bar.xml,然后将其包含在每个要使用的 activity 中它包含以下行:
<include layout="@layout/app_bar"/>
然后,在activity需要自定义应用栏的地方,你只是不使用这个应用栏,而是使用新自定义的应用栏。
假设应用栏共享很多自定义项,并且您不想重复自己。在这种情况下,您可以为您的应用栏创建一个自定义主题并将其设置为您的工具栏,在另一个主题中扩展这个主题,覆盖您想要更改的属性,并为特定用例设置扩展主题。
我的应用程序有几个活动。对于所有这些工具栏,工具栏都是从 Main activity 隐式继承的。我只想为单个 activity、 设置一个特定的工具栏,但对于所有其他工具栏 - 我想继续从主工具栏继承它们。
如果我尝试为我的单曲设置一个新的工具栏 activity - 我会遇到一个众所周知的异常 This Activity already has an action bar
但要修复它,我可以添加到我的 AppTheme
样式中:
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
它允许我设置不同的工具栏,
但问题是:在那种情况下,对于每个 activity,我需要明确设置一个工具栏,但我想从主工具栏继承一个工具栏.
请在下面找到一些代码:
我的主工具栏
<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"
app:popupTheme="@style/AppTheme.PopupOverlay" android:layout_weight="1">
</android.support.v7.widget.Toolbar>
</android.support.design.widget.AppBarLayout>
和样式:
<style name="AppTheme" parent="Theme.AppCompat.Light">
<!-- Customize your theme here. -->
<item name="colorPrimary">@android:color/white</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
<style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Light"/>
<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light"/>
和 manifest.xml
<activity
android:name=".."
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
..
</intent-filter>
</activity>
和 MainActivity onCreate
方法:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Toolbar toolbar = findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
...
}
要共享单个工具栏,最好的办法是将工具栏布局提取到单独的布局文件中,例如 app_bar.xml,然后将其包含在每个要使用的 activity 中它包含以下行:
<include layout="@layout/app_bar"/>
然后,在activity需要自定义应用栏的地方,你只是不使用这个应用栏,而是使用新自定义的应用栏。
假设应用栏共享很多自定义项,并且您不想重复自己。在这种情况下,您可以为您的应用栏创建一个自定义主题并将其设置为您的工具栏,在另一个主题中扩展这个主题,覆盖您想要更改的属性,并为特定用例设置扩展主题。