Android:如何更改操作栏标题?

时间:2015-12-03 16:13:34

标签: java android

这是我的styles.xml文件。

<resources>

    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <item name="colorPrimary">@color/colorPrimary4</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark4</item>
        <item name="colorAccent">@color/colorAccent2</item>
        <item name="android:fontFamily">fonts/HelveticaNeue-Light.ttf</item>
    </style>

    <style name="AppTheme.NoActionBar">
        <item name="windowActionBar">false</item>
        <item name="windowNoTitle">true</item>
    </style>

    <style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />

    <style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />

    <style name="AppTheme.Widget" />

    <style name="AppTheme.Widget.TextView" parent="android:Widget.Holo.Light.TextView">
        <item name="android:fontFamily">fonts/HelveticaNeue-Light.ttf</item>
    </style>
</resources>

这是包含工具栏的布局文件。

<?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="match_parent" android:fitsSystemWindows="true"
    tools:context=".HomeActivity">

    <android.support.design.widget.AppBarLayout android:layout_height="wrap_content"
        android:layout_width="match_parent" 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>

    <include layout="@layout/content_home" />

</android.support.design.widget.CoordinatorLayout>

因此,toolbar正在使用AppTheme.PopOverlay文件中定义的styles.xml主题。

目前工具栏上的标题已设置为默认应用名称,我想更改标题,因此我已尝试在<item name="android:text">@string/customtitle</item>主题中加入AppTheme.PopOverlay属性。它没有用。

现在开始想知道,默认情况下如何定义标题作为应用名称,以及如何更改它。

我想从根本问题中找到的是,默认情况下如何使用工具栏中的应用名称设置标题,即使它未在XML文件的任何部分,AndroidManifest.xml或代码中定义

3 个答案:

答案 0 :(得分:6)

您可以通过两种方式更改标题:

以编程方式(在您的活动中):

setTitle("Title");

XML(在你的Manifest中):

<activity android:name=".SomeClass" android:label="Title" />  

要更改操作栏的字体,您可以考虑以下帖子:How to Set a Custom Font in the ActionBar Title?

答案 1 :(得分:1)

您可以通过此代码更改标题

setTitle("Your Tittle");

答案 2 :(得分:0)

您可以通过以下方式完成:

Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
toolbar.setTitle("Hi!");