アクションバーのテキストを変更する方法


230

現在はアプリケーションの名前が表示されるだけで、カスタムの何かを表示し、アプリの画面ごとに異なるものにしたいです。

たとえば、私のホーム画面ではアクションバーに「page1」と表示され、アプリが切り替える別のアクティビティでは、画面のアクションバーに「page2」と表示されます。

回答:


358

更新:最新のActionBar(タイトル)パターン:

参考までに、ActionBarはAPIレベル11で導入されました。ActionBarは、アクティビティの上部にあるウィンドウ機能で、アクティビティのタイトル、ナビゲーションモード、および検索などの他のインタラクティブなアイテムを表示できます。

タイトルバーをカスタマイズし、アプリケーション全体で統一することについて、私は正確に覚えています。それで、私は以前の日と比較して、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
活動のためか、アプリケーション全体のためにアンドロイドのカスタムタイトルを設定するには、この例に従ってください:labs.makemachine.net/2010/03/custom-android-window-title
Paresh Mayani

1
+1!これをありがとう、しかしなぜandroid:layout_width = "400px"を親の線形レイアウトに伝えることができますか?
quinestor 2012

2
@quinestorはい、必要に応じて「wrap_content」または「fill_parent」を使用できます。これは単なる例です。
Paresh Mayani

JavaScriptのいくつかのヒント?
アイビー

1
「dp」などの独立した単位の代わりに「px」を使用することに反対します。多くの新しい学習者は、コードを分解してそれを最大限に活用しようとすることによって答えられたものよりも多くを学ぶからです。
Akshat Agarwal 2013

107

マニフェストファイルで各アクティビティのラベルを定義できます。

アクティビティの通常の定義は次のようになります。

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

タイトルテキストは、このアクティビティの文字列リソースのIDで置き換える必要があります。

動的に設定する場合は、コードからタイトルテキストを設定することもできます。

setTitle(address.getCity());

この行では、タイトルは私のアクティビティのoncreateメソッドで特定のアドレスの都市に設定されています。


56

setTitle内でプログラムを使用してタイトルを定義できます。ActivityこのメソッドはStringvalues/strings.xmlファイルで定義されているまたはIDを受け入れることができます。例:

public class YourActivity extends Activity {

    @Override
    public void onCreate(Bundle savedInstanceState) {

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

    }
}

19

ActionBarのタイトルは、次の2つの方法のいずれかで変更できます。

  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

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およびナビゲーションアーキテクチャコンポーネントを使用している将来の開発者向け。

上記の解決策の1つを使用してツールバーのタイトルを設定する代わりに、バックスタックの変更時に動的に設定する場合は非常に面倒ですが、次のようにナビゲーショングラフでフラグメントのタイトルプレースホルダーを設定できます。

<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(の場合placeholder = "World")。


弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.