Custom Android Fonts

You must Login before you can answer or comment on any questions.

I need help displaying custom fonts for my application, I have placed the font file in the correct directory (/Resources/android/fonts) but unfortunately I am not able to use it. here is some sample code of my javascript file:

font:{  
        fontFamily:'Harabara',  
        fontWeight:'bold',  
        fontSize:30 
    }

3 Answers

Accepted Answer

Hello James,

See this LINK,

I hope it will help you, Best Luck...

— answered 8 months ago by Ritesh .
answer permalink
5 Comments
  • also refer this LINK2

    — commented 8 months ago by Ritesh .

  • I just tried:

    var customFont = 'Harabara'; 
    if(Ti.Platform.osname=='android') {
       customFont = 'Harabara'; // on Android, use the "base name" of the file (name without extension)
    } 
     
    var label1 = Titanium.UI.createLabel({
       color:'#FFF',
       text:'Hello',
       font:{
          fontSize:40,
          fontFamily: 'Harabara'
       },
       textAlign:'center',
       width:'auto'
    });
    win.add(label1)
    but it wont work..

    — commented 8 months ago by james rowland

  • did you tried it after full clean build?

    — commented 8 months ago by Ritesh .

  • Show 2 more comments

I am going to try your solution you both win good job, thank god somebody uploaded a source folder.

After spending 3 hours looking at problem I deleted old applications on my emulator and suddenly the fonts start working again! WTF TITANIUM! who the hell made this terrible piece of rubbish (for any staff member that is reading, don't force your propaganda nonsense on me by deleting my post), totally unexpectable, by the way guys if you don't have a solution in the future don't just be rude and walk away silently tell me that you're out of ideas!

— answered 8 months ago by james rowland
answer permalink
2 Comments
  • I know one of you "special" staff members are gonna take this down because I might have used a profanity, but WTF means what the flower so keep your pants on, you bunch of "special" people.

    — commented 8 months ago by james rowland

  • Funny, you remind me of someone...

    Don't we know each other?

    — commented 8 months ago by Christian Brousseau

Your Answer

Think you can help? Login to answer this question!