如何更改操作栏上的文字

目前它只显示应用程序的名称,我希望它显示一些自定义的东西,在我的应用程序中的每个屏幕都是不同的。

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

472001 次浏览

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

一个活动的正常定义是这样的:

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

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

如果希望动态地设置标题文本,也可以从代码中设置它。

setTitle(address.getCity());

在oncreate方法中,这一行将标题设置为活动的特定地址所在的城市。

更新:最新的动作栏(标题)模式:

供你参考,ActionBar是在API Level 11中引入的。ActionBar是Activity顶部的一个窗口功能,可以显示活动名称、导航模式和其他交互项,如搜索。

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

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

例如:

enter image description here

enter image description here

正常方式,

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();


}

样式操作栏:

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

更多信息请访问:样式化操作栏

如果你想为ActionBar生成样式,那么这个< >强劲风格发电机< / >强工具可以帮助你。

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

年龄:早年:

正常方式,

你可以通过设置它们的Android:label来改变每个屏幕(即活动)的标题

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

=>自定义标题栏


但如果你想以自己的方式定制标题栏,即< em > Want to put Image icon and custom-text < / em >,那么下面的代码适合我:

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>

试着这样做……

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);
...
...
}

这对我很有用

你可以在你的Activity中使用setTitle编程地定义你的标题,这个方法可以接受String或在你的values/strings.xml文件中定义的ID。例子:

public class YourActivity extends Activity {


@Override
public void onCreate(Bundle savedInstanceState) {


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


}
}

我们可以用以下两种方式之一更改动作栏标题:

  1. In the Manifest:在Manifest文件中,设置每个Activity的标签。

    android:label="@string/TitleWhichYouWantToDisplay"
    
  2. In code: in code, call the setTitle() method with a String or the id of String as the argument.

    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);
    
    
    }
    }
    

年纪大一点,但也有同样的问题。我是这样做的:

strings.xml

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

并确保你在AndroidManifest.xml中设置了这个:

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

这很简单,你不必担心空引用和其他东西。

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

getSupportActionBar().setTitle("Whatever title");
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

getActionBar().setTitle("edit your text");
最简单的方法是如果你在活动中调用this.setTitle("...")。 如果你在一个片段中,只需调用getActivity().setTitle("...");

这种方式可以让你随时更改标题,不需要在setContentView(R.layout.activity_test)之前调用它;

修改操作栏名称的最好方法是去AndroidManifest.xml

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

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

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

你只需要在onCreate方法中添加这段代码。

setTitle("new title");

对于将来使用AndroidX导航体系结构组件. xml的开发人员。

使用上面的解决方案之一设置工具栏标题的而不是,如果你想在后面的堆栈更改中动态设置它,可以是非常痛苦的,你可以为导航图中的片段的标题设置占位符,如下所示:

<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(通过action方法)提供。

然后在标题中替换它,并像Hello World一样显示(当placeholder = "World"时)。

getSupportActionBar().setTitle("title");

芬兰湾的科特林

您可以以这种方式在Kotlin中以编程方式完成它。如果“supportActionBar”为空,则忽略它:

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

或者这样。如果“supportActionBar”为空,则抛出异常。

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

如果你正在使用导航栏来改变片段,那么你可以在你正在改变片段的地方添加更改,如下所示:

 public boolean onNavigationItemSelected(@NonNull MenuItem item) {
switch (item.getItemId()) {
case R.id.clientsidedrawer:
//    Toast.makeText(getApplicationContext(),"Client selected",Toast.LENGTH_SHORT).show();
getSupportFragmentManager().beginTransaction().replace(R.id.fragment_container, new clients_fragment()).commit();
break;
    

case R.id.adddatasidedrawer:
getSupportActionBar().setTitle("Add Client");
getSupportFragmentManager().beginTransaction().replace(R.id.fragment_container, new addclient_fragment()).commit();
break;
    

case R.id.editid:
getSupportActionBar().setTitle("Edit Clients");
getSupportFragmentManager().beginTransaction().replace(R.id.fragment_container, new Editclient()).commit();
break;
    

case R.id.taskid:
getSupportActionBar().setTitle("Task manager");
getSupportFragmentManager().beginTransaction().replace(R.id.fragment_container,new Taskmanager()).commit();
break;

如果你正在使用简单的活动,那么只需调用:

getSupportActionBar().setTitle("Contact Us");

在活动使用中改变actionbar /工具栏颜色:

getSupportActionBar().setBackgroundDrawable(new ColorDrawable(Color.parseColor("#06023b")));

设置渐变为动作栏首先创建梯度: 使用实例目录创建>R.drawable.gradient_contactus

<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle"
>


<gradient
android:angle="90"
android:startColor="#2980b9"
android:centerColor="#6dd5fa"
android:endColor="#2980b9">
</gradient>




</shape>

然后像这样设置:

getSupportActionBar().setBackgroundDrawable(getResources().getDrawable(R.drawable.gradient_contactus));

在onCreateView中添加这个:

(activity as AppCompatActivity).supportActionBar?.title ="My APP Title"

下面的代码在Oncreate方法中工作得很好

    getSupportActionBar().setTitle("Text to display");