如何在操作栏上更改文本


230

目前,它仅显示应用程序的名称,而我希望它显示自定义名称,并且对于我的应用程序中的每个屏幕都不同。

例如:我的主屏幕在操作栏中可以说“ page1”,而应用程序切换到的另一个活动在该屏幕操作栏中可以有“ page2”。

Answers:


358

更新:最新的ActionBar(标题)模式:

仅供参考,动作条在API级别11动作条被引入处于活动的顶部的窗口的功能,可以显示活动标题,导航模式,和其它交互式项目,如搜索。

我确实记得自定义标题栏并使其在应用程序中保持一致。因此,我可以与以前进行比较,并列出使用ActionBar的一些优点:

  1. 它为您的用户提供了跨应用程序的熟悉界面,系统可以优雅地适应不同的屏幕配置。
  2. 开发人员不需要编写太多代码来显示活动标题,图标和导航模式,因为ActionBar已经准备好进行顶层抽象。

例如:

在此处输入图片说明

在此处输入图片说明

=>正常方式,

getActionBar().setTitle("Hello world App");   
getSupportActionBar().setTitle("Hello world App");  // provide compatibility to all the versions

=>自定义操作栏,

例如:

@Override
public void setActionBar(String heading) {
    // TODO Auto-generated method stub

    com.actionbarsherlock.app.ActionBar actionBar = getSupportActionBar();
    actionBar.setHomeButtonEnabled(true);
    actionBar.setDisplayHomeAsUpEnabled(false);
    actionBar.setDisplayShowHomeEnabled(false);
    actionBar.setBackgroundDrawable(new ColorDrawable(getResources().getColor(R.color.title_bar_gray)));
    actionBar.setTitle(heading);
    actionBar.show();

}

设置操作栏样式:

ActionBar为您提供基本和熟悉的外观,导航模式以及要执行的其他快速操作。但这并不意味着在每个应用程序中看起来都一样。您可以根据您的UI和设计要求自定义它。您只需要定义和编写样式和主题即可。

在以下位置了解更多信息:造型动作栏

而且,如果您要为ActionBar生成样式,则此样式生成器工具可以为您提供帮助。

================================================== ==============================

旧:较早的日子:

=>正常方式,

您可以通过设置每个屏幕的标题来更改每个屏幕的标题(即“活动”) Android:label

   <activity android:name=".Hello_World"
                  android:label="This is the Hello World Application">
   </activity>

=>自定义-标题-栏


但是,如果您想以自己的方式自定义标题栏,即 Want to put Image icon and custom-text,那么以下代码对我有用:

main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"/>

titlebar.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="400dp" 
  android:layout_height="fill_parent"
  android:orientation="horizontal">

<ImageView android:id="@+id/ImageView01" 
            android:layout_width="57dp" 
            android:layout_height="wrap_content"
            android:background="@drawable/icon1"/>

<TextView 

  android:id="@+id/myTitle" 
  android:text="This is my new title" 
  android:layout_width="fill_parent" 
  android:layout_height="fill_parent" 
  android:textColor="@color/titletextcolor"
   />
</LinearLayout>

TitleBar.java

public class TitleBar extends Activity {

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        final boolean customTitleSupported = 
                requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
        setContentView(R.layout.main);
        if (customTitleSupported) {
            getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE,
                R.layout.titlebar);
        }
        final TextView myTitleText = (TextView) findViewById(R.id.myTitle);
        if (myTitleText != null) {
            myTitleText.setText("NEW TITLE");
            // user can also set color using "Color" and then
            // "Color value constant"
            // myTitleText.setBackgroundColor(Color.GREEN);
        }
    }
}

strings.xml

strings.xml文件在values文件夹下定义。

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="hello">Hello World, Set_Text_TitleBar!</string>
    <string name="app_name">Set_Text_TitleBar</string>
    <color name="titlebackgroundcolor">#3232CD</color>
    <color name="titletextcolor">#FFFF00</color>
</resources>

2
请按照以下示例在Android中为活动或整个应用程序全局设置“自定义标题”:labs.makemachine.net/2010/03/custom-android-window-title
Paresh

1
+1!谢谢你,但是你能告诉我们为什么android:layout_width =“ 400px”成为父级线性布局吗?
quinestor 2012年

2
@quinestor是的,您可以根据需要使用“ wrap_content”或“ fill_parent”,例如。
Paresh Mayani

有关javascript的一些提示?
常春藤

1
我反对使用“ px”而不是诸如“ dp”之类的独立单元,因为许多新学习者所学的知识远不止尝试分解代码并从中获得最大收益。
Akshat Agarwal

107

您可以在清单文件中为每个活动定义标签。

活动的常规定义如下所示:

<activity
     android:name=".ui.myactivity"
     android:label="@string/Title Text" />

标题文本应替换为此活动的字符串资源的ID。

如果要动态设置标题文本,也可以从代码中设置标题文本。

setTitle(address.getCity());

在此行中,标题设置为我活动的oncreate方法中特定地址的城市。


56

您可以通过编程定义标题setTitle您内Activity,这种方法可以接受一个String在你定义或ID values/strings.xml文件。例:

public class YourActivity extends Activity {

    @Override
    public void onCreate(Bundle savedInstanceState) {

        setTitle(R.string.your_title);
        setContentView(R.layout.main);

    }
}

19

我们可以通过以下两种方式之一来更改ActionBar标题:

  1. 在清单:清单文件中,设置每个活动的标签。

    android:label="@string/TitleWhichYouWantToDisplay"
  2. 在代码中:在代码中,使用String或String的id作为参数调用setTitle()方法。

    public class MainActivity extends Activity {
    
        @Override
        public void onCreate(Bundle savedInstanceState) {
    
            setTitle(R.string.TitleWhichYouWantToDisplay);
            // OR You can also use the line below
            // setTitle("MyTitle")
            setContentView(R.layout.activity_main);
    
        }
    }

16

在Activity.onCreate()回调中或需要更改标题的另一个地方:

getSupportActionBar().setTitle("Whatever title");

5

尝试做这个...

public void onCreate(Bundle savedInstanceState) 
{
super.onCreate(savedInstanceState);
    this.setTitle(String.format(your_format_string, your_personal_text_to_display));
    setContentView(R.layout.your_layout);
       ...
       ...
}

这个对我有用


3

年龄稍大,但存在相同的问题。我这样做是这样的:

strings.xml

<string name="title_awesome_app">My Awesome App</string>

并确保您在AndroidManifest.xml中进行了设置:

<activity
            ...
            android:label="@string/title_awesome_app" >
            ...
</activity>

这很容易,您不必担心null引用和其他东西。



3

更改操作栏名称的最简单方法是转到AndroidManifest.xml并键入以下代码。

<activity android:name=".MainActivity"
    android:label="Your Label> </activity>

2

您只需在onCreate方法中添加此代码。

setTitle("new title");

1
ActionBar ab = getActionBar();
TextView tv = new TextView(getApplicationContext());

LayoutParams lp = new RelativeLayout.LayoutParams(
        LayoutParams.MATCH_PARENT, // Width of TextView
        LayoutParams.WRAP_CONTENT);
tv.setLayoutParams(lp);
tv.setTextColor(Color.RED);
ab.setCustomView(tv);

有关更多信息,请检查此链接:

http://android--code.blogspot.in/2015/09/android-how-to-change-actionbar-title_21.html


如果您使用的是AppCompatActivity,则可以使用getSupportActionBar()
Hamid Vakilian 18/12/14

1

更改操作栏名称的最佳方法是转到AndroidManifest.xml并键入以下代码。

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

1

科特林

您可以通过这种方式在Kotlin中进行编程。如果“ supportActionBar”为null,则只需忽略它

    supportActionBar?.setTitle(R.string.my_text)
    supportActionBar?.title = "My text"

还是这样。如果“ supportActionBar”为null,则抛出异常。

    supportActionBar!!.setTitle(R.string.my_text)
    supportActionBar!!.title = "My text"

0

最简单的方法是this.setTitle("...")在活动中致电。如果您处于碎片中,只需致电getActivity().setTitle("...")

这样,您可以随时更改标题,而无需在之前调用它 setContentView(R.layout.activity_test)


0

对于使用AndroidX导航架构组件的未来开发人员

您可以使用导航图中的片段标题设置占位符而不是使用上面的一种解决方案来设置工具栏标题(如果您想在后退堆栈更改中对其进行动态设置会很麻烦),可以在导航图中为该片段的标题设置一个占位符

<fragment
    android:id="@+id/some_fragment"
    android:name="package.SomeFragment"
    android:label="Hello {placeholder}"
    tools:layout="@layout/fragment_some">
    <argument
        android:name="placeholder"
        app:argType="string" />
</fragment>

必须使用FragmentDirections(通过操作方法)提供占位符值。

然后将其替换为标题,并显示为Hello World(when placeholder = "World")。


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.