如何更改菜单的文字?

时间:2018-02-18 20:33:56

标签: android text menu title

如何更改Android中菜单的文字?我想更改显示"欢迎来到工程"的文本,这是应用程序的名称,而不是当前膨胀的列表的名称。

Here is a picture of the Menu

这是清单:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
          package="com.bignerdranch.android.welcometoengineering">

    <uses-feature android:name="android.hardware.camera"
                  android:required="false"/>

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".CourseListActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>
                <category android:name="android.intent.category.LAUNCHER"/>
            </intent-filter>
        </activity>
        <provider
            android:authorities="com.bignerdranch.android.welcometoengineering.fileprovider"
            android:name="android.support.v4.content.FileProvider"
            android:exported="false"
            android:grantUriPermissions="true">
            <meta-data
                android:name="android.support.FILE_PROVIDER_PATHS"
                android:resource="@xml/files"/>
        </provider>
        <!--Hierarchies-->

        <activity
            android:name=".CoursePagerActivity"
            android:parentActivityName=".CourseListActivity">
        </activity>
        <activity
            android:name=".SemesterListActivity"
            android:parentActivityName=".CourseListActivity">
        </activity>
        <activity
            android:name=".ProfessorListActivity"
            android:parentActivityName=".SemesterListActivity">
        </activity>
        <activity
            android:name=".PostPagerActivity"
            android:parentActivityName=".ProfessorListActivity">
        </activity>
    </application>

</manifest>

这是布局XML文件:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
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="match_parent">

<!-- Layer 1 -->
<android.support.v7.widget.RecyclerView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/semester_recycler_view"/>


</FrameLayout>

以下是该布局文件的菜单:

<menu
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">

(我知道菜单目前没有做任何事情。我很快就会改变它。)

谢谢!

1 个答案:

答案 0 :(得分:0)

添加你的onCreate

this.setTitle("Your String");