How do you change the typeface of a title of a toolbar?
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.


add a comment |
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.


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
add a comment |
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.


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.




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
add a comment |
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
add a comment |
3 Answers
3
active
oldest
votes
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);
add a comment |
Toolbar is a view group. so you can put there any view you want. then you can modify those views as you want
add a comment |
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"
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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);
add a comment |
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);
add a comment |
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);
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);
edited Jan 2 at 11:21
answered Jan 2 at 11:14


okcomputer_kidokcomputer_kid
33839
33839
add a comment |
add a comment |
Toolbar is a view group. so you can put there any view you want. then you can modify those views as you want
add a comment |
Toolbar is a view group. so you can put there any view you want. then you can modify those views as you want
add a comment |
Toolbar is a view group. so you can put there any view you want. then you can modify those views as you want
Toolbar is a view group. so you can put there any view you want. then you can modify those views as you want
answered Jan 2 at 11:18


AmasAmas
3921213
3921213
add a comment |
add a comment |
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"
add a comment |
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"
add a comment |
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"
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"
answered Jan 2 at 11:18
forpasforpas
17.9k3728
17.9k3728
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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