gpt4 book ai didi

list 中的 Android appcompat 工具栏标题

转载 作者:行者123 更新时间:2023-11-29 20:58:33 24 4
gpt4 key购买 nike

我在 FragmentActivity 内的抽屉布局中使用 Appcompat 工具栏。每个 fragmentActivity 内部都需要根据 Activity 更改标题。有没有什么方法可以从 Manifest 设置标题而不是在 onCreate toolbar.setTitle("ABC") 的每个 Activity 中设置。

注意:我没有使用 getSupportActionBar(toolbar)

FirstActivity 扩展了 BaseActivity

主题.xml

<style name="AppTheme.Base" parent="Theme.AppCompat.Light">
<item name="colorPrimary">@color/primary</item>
<item name="colorPrimaryDark">@color/primaryDarker</item>
<item name="android:windowNoTitle">true</item>
<item name="windowActionBar">false</item>
<item name="drawerArrowStyle">@style/DrawerArrowStyle</item>
</style>

<style name="DrawerArrowStyle" parent="Widget.AppCompat.DrawerArrowToggle">
<item name="spinBars">true</item>
<item name="color">@android:color/white</item>
</style>

<color name="primary">#457C50</color>
<color name="primaryDarker">#580C0C</color>

Android list

<activity
android:name="com.sample.md.FirstActivity"
android:configChanges="orientation|screenSize|keyboardHidden"
android:label="First Activity" >
</activity>

工具栏在 Base Activity 中初始化

android.support.v7.widget.Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
android.support.v7.app.ActionBarDrawerToggle mDrawerToggle =
new ActionBarDrawerToggle(this, mDrawerLayout, toolbar, R.string.drawer_open, R.string.drawer_close) {

@Override
public void onDrawerClosed(View view) {
super.onDrawerClosed(view);
try {
toolbar.setTitle(mTitle);
} catch (Exception e) {
e.printStackTrace();
}
invalidateOptionsMenu();
syncState();
}

@Override
public void onDrawerOpened(View drawerView) {
super.onDrawerOpened(drawerView);
toolbar.setTitle("Menu");
invalidateOptionsMenu();
syncState();
}

};

mDrawerToggle.setDrawerIndicatorEnabled(true);
mDrawerLayout.setDrawerListener(mDrawerToggle);
mDrawerToggle.syncState();

最佳答案

像这样设置标签属性:

<activity
android:label="My Screen"
... >

关于 list 中的 Android appcompat 工具栏标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26879363/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com