我试图使用android-support-v7:21库创建简单的应用程序。 代码片段: MainActivity.java

public class MainActivity extends ActionBarActivity {

    Toolbar mActionBarToolbar;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        mActionBarToolbar = (Toolbar) findViewById(R.id.toolbar_actionbar);            
        mActionBarToolbar.setTitle("My title");
        setSupportActionBar(mActionBarToolbar);
}

activity_main.xml

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    android:orientation="vertical">

    <android.support.v7.widget.Toolbar            
        android:id="@+id/toolbar_actionbar"
        android:background="@null"
        android:layout_width="match_parent"
        android:layout_height="?actionBarSize"
        android:fitsSystemWindows="true" />

</LinearLayout>

但是工具栏上显示的不是“我的标题”%应用程序名称%。 似乎setTitle方法没有效果。 我想展示"我的头衔"

乌利希期刊指南: 在此之前,styles.xml是:

<style name="AppTheme" parent="Theme.AppCompat">
    <item name="windowActionBar">false</item>
</style>

我以为动作栏不用。 我添加了NoActionBar到父样式:

<style name="AppTheme" parent="Theme.AppCompat.NoActionBar">
    <item name="windowActionBar">false</item>
</style>

但问题并没有解决。


当前回答

如果你的目标是在工具栏中设置一个静态字符串,最简单的方法是在AndroidManifest.xml中设置活动标签:

<activity android:name=".xxxxActivity"
          android:label="@string/string_id" />

工具栏不需要任何代码就可以得到这个字符串。(适用于v27库。)

其他回答

答案在文档中(你可以在这里找到):

要使用ActionBar实用程序方法,请调用活动的 getSupportActionBar()方法。类的引用 appcompat ActionBar对象。一旦你有了证明人,你就可以打电话了 任何ActionBar方法来调整应用程序栏。例如, 隐藏应用程序栏,调用ActionBar.hide()。

这就是你实际找到的解。我只是想参考一下官方文件(显然很少有人愿意阅读)。

 getSupportActionBar().setTitle("Your Title");

试试这个,你可以直接在XML中定义title:

 <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        app:title="some title"
        app:popupTheme="@style/AppTheme.PopupOverlay">

只需在适配器中使用它, MainActivity是AppCompactActivity。 在任何地方都可以调用它。

((MainActivity) context).getSupportActionBar().setTitle(titles.get(position));

我尝试从片段重命名工具栏

它帮助了我,我希望能帮助其他人

Activity activity = this.getActivity();
Toolbar toolbar = (Toolbar) activity.findViewById(R.id.detail_toolbar);
        if (toolbar != null) {
            activity.setTitle("Title");
        }

//toolbar.setTitle("Title"); did not give the same results

截图: