How to change android Activity label

2019-03-17 07:50发布

问题:

I have created an Activity and declared in Manifest file. But I would like to re-use the same Activity for other purpose.

 <activity
            android:configChanges="orientation|keyboardHidden"
            android:label="Main Menu"
            android:name=".MainMenu"
            android:theme="@android:style/Theme.Light" >
        </activity>

I need to change the Label dynamically. Thanks in Advance

回答1:

Use

setTitle(int titleId)

or

setTitle(CharSequence title)



回答2:

public class YourActivity extends Activity {
  @Override
  public void onCreate(Bundle savedInstanceState) {
      setTitle(R.string.your_title);
      setContentView(R.layout.main);
  }
}


回答3:

You need to use setTitle for this:

setTitle(R.string.your_title);
//or
setTitle("new title");


回答4:

You can define the string in res/string.xml file and then add android:label to the AndroidMenifest.xml file

string.xml code
<string name="string_name">text to display</string>

AndroidMenifest.xml code

<activity android:name=".SomeActivity"
            android:label="@string/string_name"/>


回答5:

I have the same problem, Try this in onCreate it's work for me!

public class YourActivityName extends Activity {
  @Override
  public void onCreate(Bundle savedInstanceState) {
    setTitle("Your Title");
  }
}


回答6:

if(Condition)
{
    setTitle("Your Title");
}
else
{
    // your Default Title from Manifest
}

Try to use this line.



回答7:

Static, not Dynamic

Go to your AndroidManifest.xml file and add the android:label attribute to the activity tag you want, like this:

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


回答8:

In your Manifest file

Initially, your code was like this.

    <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity android:name=".NumbersActivity"  />
    <activity android:name=".FamilyMembersActivity"  />
    <activity android:name=".ColorsActivity"  />
    <activity android:name=".PhrasesActivity" />
    </activity>
</application>

But after changes to add Labels.

<activity android:name=".NumbersActivity" android:label="Numbers" />
    <activity android:name=".FamilyMembersActivity" android:label="Family Members" />
    <activity android:name=".ColorsActivity" android:label="Colors" />
    <activity android:name=".PhrasesActivity" android:label="Phrases" >
    </activity>
</application>

is the optimum way to change the Label name.

courtesy.(ryanwaite28)



回答9:

android:label="any word you want"/>