Setting Action Bar title and subtitle

后端 未结 12 748
盖世英雄少女心
盖世英雄少女心 2020-12-01 02:41

I want to set title and subtitile of my action bar before compile time. I got a way to do it like this:

ActionBar ab = getActionBar();
ab.setTitle(\"My Title         


        
12条回答
  •  无人及你
    2020-12-01 03:15

    You can do something like this to code for both versions:

    /**
     * Sets the Action Bar for new Android versions.
     */
    @TargetApi(Build.VERSION_CODES.HONEYCOMB)
    private void actionBarSetup() {
      if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
        ActionBar ab = getActionBar();
        ab.setTitle("My Title");
        ab.setSubtitle("sub-title"); 
      }
    }
    

    Then call actionBarSetup() in onCreate(). The if runs the code only on new Android versions and the @TargetApi allows the code to compile. Therefore it makes it safe for both old and new API versions.

    Alternatively, you can also use ActionBarSherlock (see edit) so you can have the ActionBar on all versions. You will have to do some changes such as making your Activities extend SherlockActivity and calling getSupportActionBar(), however, it is a very good global solution.

    Edit

    Note that when this answer was originally written, ActionBarSherlock, which has since been deprecated, was the go-to compatibility solution.

    Nowadays, Google's appcompat-v7 library provides the same functionality but is supported (and actively updated) by Google. Activities wanting to implement an ActionBar must:

    • extend AppCompatActivity
    • use a Theme.AppCompat derivative

    To get an ActionBar instance using this library, the aptly-named getSupportActionBar() method is used.

提交回复
热议问题