How do you change the typeface of a title of a toolbar?












0















I'm making an Android App with Android Studio in Java. My app will have a toolbar. I want to change the Typeface of the title of my Toolbar to a font.



The font isn't one that Android Studio already provides so I used this tutorial. https://www.youtube.com/watch?v=fB17m3kX-go
But I want to try to change the Typeface of the Toolbar title and there isn't a way to do so. I tried using setTextAppearance but I don't know how to use the styles.xml resources item to change it.










share|improve this question

























  • Possible duplicate stackoverflow.com/questions/32398104/…

    – okcomputer_kid
    Jan 2 at 11:16











  • Possible duplicate of How to set a custom font to the title in toolbar android

    – ADM
    Jan 2 at 11:28
















0















I'm making an Android App with Android Studio in Java. My app will have a toolbar. I want to change the Typeface of the title of my Toolbar to a font.



The font isn't one that Android Studio already provides so I used this tutorial. https://www.youtube.com/watch?v=fB17m3kX-go
But I want to try to change the Typeface of the Toolbar title and there isn't a way to do so. I tried using setTextAppearance but I don't know how to use the styles.xml resources item to change it.










share|improve this question

























  • Possible duplicate stackoverflow.com/questions/32398104/…

    – okcomputer_kid
    Jan 2 at 11:16











  • Possible duplicate of How to set a custom font to the title in toolbar android

    – ADM
    Jan 2 at 11:28














0












0








0








I'm making an Android App with Android Studio in Java. My app will have a toolbar. I want to change the Typeface of the title of my Toolbar to a font.



The font isn't one that Android Studio already provides so I used this tutorial. https://www.youtube.com/watch?v=fB17m3kX-go
But I want to try to change the Typeface of the Toolbar title and there isn't a way to do so. I tried using setTextAppearance but I don't know how to use the styles.xml resources item to change it.










share|improve this question
















I'm making an Android App with Android Studio in Java. My app will have a toolbar. I want to change the Typeface of the title of my Toolbar to a font.



The font isn't one that Android Studio already provides so I used this tutorial. https://www.youtube.com/watch?v=fB17m3kX-go
But I want to try to change the Typeface of the Toolbar title and there isn't a way to do so. I tried using setTextAppearance but I don't know how to use the styles.xml resources item to change it.







android android-toolbar






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jan 2 at 11:41









Fantômas

32.8k156490




32.8k156490










asked Jan 2 at 11:05









krispo.ukekrispo.uke

5810




5810













  • Possible duplicate stackoverflow.com/questions/32398104/…

    – okcomputer_kid
    Jan 2 at 11:16











  • Possible duplicate of How to set a custom font to the title in toolbar android

    – ADM
    Jan 2 at 11:28



















  • Possible duplicate stackoverflow.com/questions/32398104/…

    – okcomputer_kid
    Jan 2 at 11:16











  • Possible duplicate of How to set a custom font to the title in toolbar android

    – ADM
    Jan 2 at 11:28

















Possible duplicate stackoverflow.com/questions/32398104/…

– okcomputer_kid
Jan 2 at 11:16





Possible duplicate stackoverflow.com/questions/32398104/…

– okcomputer_kid
Jan 2 at 11:16













Possible duplicate of How to set a custom font to the title in toolbar android

– ADM
Jan 2 at 11:28





Possible duplicate of How to set a custom font to the title in toolbar android

– ADM
Jan 2 at 11:28












3 Answers
3






active

oldest

votes


















0














Have a textview inside toolbar in xml.
Then use setTypeface() to change typeface of that textview.



<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_height="wrap_content"
android:layout_width="match_parent"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Your Title Here"
android:layout_gravity="center"
android:id="@+id/title" />

</android.support.v7.widget.Toolbar>


The set typeface to title
In your Activity,



TextView toobar_title = findViewById(R.id.title);
toolbar_title.setTypeface(your_typeface);





share|improve this answer

































    0














    Toolbar is a view group. so you can put there any view you want. then you can modify those views as you want






    share|improve this answer































      0














      Paste the font file in res/font folder.

      If the font subfolder does not exist you have to create it,

      by right clicking on res and selecting New>Android Resource Directory,

      then set the name to font.

      In styles.xml create a theme for your toolbar:



      <style name="MyToolbarTheme" parent="ThemeOverlay.AppCompat.Light">
      <item name="android:fontFamily">@font/myfont</item>
      </style>


      and finally in your toolbar's xml add this attribute:



      android:theme="@style/MyToolbarTheme"





      share|improve this answer























        Your Answer






        StackExchange.ifUsing("editor", function () {
        StackExchange.using("externalEditor", function () {
        StackExchange.using("snippets", function () {
        StackExchange.snippets.init();
        });
        });
        }, "code-snippets");

        StackExchange.ready(function() {
        var channelOptions = {
        tags: "".split(" "),
        id: "1"
        };
        initTagRenderer("".split(" "), "".split(" "), channelOptions);

        StackExchange.using("externalEditor", function() {
        // Have to fire editor after snippets, if snippets enabled
        if (StackExchange.settings.snippets.snippetsEnabled) {
        StackExchange.using("snippets", function() {
        createEditor();
        });
        }
        else {
        createEditor();
        }
        });

        function createEditor() {
        StackExchange.prepareEditor({
        heartbeatType: 'answer',
        autoActivateHeartbeat: false,
        convertImagesToLinks: true,
        noModals: true,
        showLowRepImageUploadWarning: true,
        reputationToPostImages: 10,
        bindNavPrevention: true,
        postfix: "",
        imageUploader: {
        brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
        contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
        allowUrls: true
        },
        onDemand: true,
        discardSelector: ".discard-answer"
        ,immediatelyShowMarkdownHelp:true
        });


        }
        });














        draft saved

        draft discarded


















        StackExchange.ready(
        function () {
        StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54005185%2fhow-do-you-change-the-typeface-of-a-title-of-a-toolbar%23new-answer', 'question_page');
        }
        );

        Post as a guest















        Required, but never shown

























        3 Answers
        3






        active

        oldest

        votes








        3 Answers
        3






        active

        oldest

        votes









        active

        oldest

        votes






        active

        oldest

        votes









        0














        Have a textview inside toolbar in xml.
        Then use setTypeface() to change typeface of that textview.



        <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_height="wrap_content"
        android:layout_width="match_parent"
        >
        <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Your Title Here"
        android:layout_gravity="center"
        android:id="@+id/title" />

        </android.support.v7.widget.Toolbar>


        The set typeface to title
        In your Activity,



        TextView toobar_title = findViewById(R.id.title);
        toolbar_title.setTypeface(your_typeface);





        share|improve this answer






























          0














          Have a textview inside toolbar in xml.
          Then use setTypeface() to change typeface of that textview.



          <android.support.v7.widget.Toolbar
          android:id="@+id/toolbar"
          android:layout_height="wrap_content"
          android:layout_width="match_parent"
          >
          <TextView
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:text="Your Title Here"
          android:layout_gravity="center"
          android:id="@+id/title" />

          </android.support.v7.widget.Toolbar>


          The set typeface to title
          In your Activity,



          TextView toobar_title = findViewById(R.id.title);
          toolbar_title.setTypeface(your_typeface);





          share|improve this answer




























            0












            0








            0







            Have a textview inside toolbar in xml.
            Then use setTypeface() to change typeface of that textview.



            <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_height="wrap_content"
            android:layout_width="match_parent"
            >
            <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Your Title Here"
            android:layout_gravity="center"
            android:id="@+id/title" />

            </android.support.v7.widget.Toolbar>


            The set typeface to title
            In your Activity,



            TextView toobar_title = findViewById(R.id.title);
            toolbar_title.setTypeface(your_typeface);





            share|improve this answer















            Have a textview inside toolbar in xml.
            Then use setTypeface() to change typeface of that textview.



            <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_height="wrap_content"
            android:layout_width="match_parent"
            >
            <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Your Title Here"
            android:layout_gravity="center"
            android:id="@+id/title" />

            </android.support.v7.widget.Toolbar>


            The set typeface to title
            In your Activity,



            TextView toobar_title = findViewById(R.id.title);
            toolbar_title.setTypeface(your_typeface);






            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Jan 2 at 11:21

























            answered Jan 2 at 11:14









            okcomputer_kidokcomputer_kid

            33839




            33839

























                0














                Toolbar is a view group. so you can put there any view you want. then you can modify those views as you want






                share|improve this answer




























                  0














                  Toolbar is a view group. so you can put there any view you want. then you can modify those views as you want






                  share|improve this answer


























                    0












                    0








                    0







                    Toolbar is a view group. so you can put there any view you want. then you can modify those views as you want






                    share|improve this answer













                    Toolbar is a view group. so you can put there any view you want. then you can modify those views as you want







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Jan 2 at 11:18









                    AmasAmas

                    3921213




                    3921213























                        0














                        Paste the font file in res/font folder.

                        If the font subfolder does not exist you have to create it,

                        by right clicking on res and selecting New>Android Resource Directory,

                        then set the name to font.

                        In styles.xml create a theme for your toolbar:



                        <style name="MyToolbarTheme" parent="ThemeOverlay.AppCompat.Light">
                        <item name="android:fontFamily">@font/myfont</item>
                        </style>


                        and finally in your toolbar's xml add this attribute:



                        android:theme="@style/MyToolbarTheme"





                        share|improve this answer




























                          0














                          Paste the font file in res/font folder.

                          If the font subfolder does not exist you have to create it,

                          by right clicking on res and selecting New>Android Resource Directory,

                          then set the name to font.

                          In styles.xml create a theme for your toolbar:



                          <style name="MyToolbarTheme" parent="ThemeOverlay.AppCompat.Light">
                          <item name="android:fontFamily">@font/myfont</item>
                          </style>


                          and finally in your toolbar's xml add this attribute:



                          android:theme="@style/MyToolbarTheme"





                          share|improve this answer


























                            0












                            0








                            0







                            Paste the font file in res/font folder.

                            If the font subfolder does not exist you have to create it,

                            by right clicking on res and selecting New>Android Resource Directory,

                            then set the name to font.

                            In styles.xml create a theme for your toolbar:



                            <style name="MyToolbarTheme" parent="ThemeOverlay.AppCompat.Light">
                            <item name="android:fontFamily">@font/myfont</item>
                            </style>


                            and finally in your toolbar's xml add this attribute:



                            android:theme="@style/MyToolbarTheme"





                            share|improve this answer













                            Paste the font file in res/font folder.

                            If the font subfolder does not exist you have to create it,

                            by right clicking on res and selecting New>Android Resource Directory,

                            then set the name to font.

                            In styles.xml create a theme for your toolbar:



                            <style name="MyToolbarTheme" parent="ThemeOverlay.AppCompat.Light">
                            <item name="android:fontFamily">@font/myfont</item>
                            </style>


                            and finally in your toolbar's xml add this attribute:



                            android:theme="@style/MyToolbarTheme"






                            share|improve this answer












                            share|improve this answer



                            share|improve this answer










                            answered Jan 2 at 11:18









                            forpasforpas

                            17.9k3728




                            17.9k3728






























                                draft saved

                                draft discarded




















































                                Thanks for contributing an answer to Stack Overflow!


                                • Please be sure to answer the question. Provide details and share your research!

                                But avoid



                                • Asking for help, clarification, or responding to other answers.

                                • Making statements based on opinion; back them up with references or personal experience.


                                To learn more, see our tips on writing great answers.




                                draft saved


                                draft discarded














                                StackExchange.ready(
                                function () {
                                StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54005185%2fhow-do-you-change-the-typeface-of-a-title-of-a-toolbar%23new-answer', 'question_page');
                                }
                                );

                                Post as a guest















                                Required, but never shown





















































                                Required, but never shown














                                Required, but never shown












                                Required, but never shown







                                Required, but never shown

































                                Required, but never shown














                                Required, but never shown












                                Required, but never shown







                                Required, but never shown







                                Popular posts from this blog

                                MongoDB - Not Authorized To Execute Command

                                Npm cannot find a required file even through it is in the searched directory

                                in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith