Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7769217
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T16:06:15+00:00 2026-06-01T16:06:15+00:00

Hi I need a little help with using a custom typeface for a listview

  • 0

Hi I need a little help with using a custom typeface for a listview items. I’m getting my typeface from assets folder like this :

Typeface font = Typeface.createFromAsset(getAssets(), "hermesbgbold.otf"); 

And I’m trying to set it for my listview items, but the problem is that I’m using a SimpleAdapter for my ListView and the TextView’s are in another XML , which I’m using as a contentView for my list View. Here is the code for better understanding :

public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.events);
// code

SimpleAdapter adapter = new SimpleAdapter(this, items, R.layout.events_items,
                new String[]{ICON,TITLE, INFO}, new int[]{ R.id.thumb,R.id.title, R.id.dates})

}

So, the textview’s which I want to use with custom typeface are in events_items.xml. So how can I set title and dates to use this custom typeface?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T16:06:17+00:00Added an answer on June 1, 2026 at 4:06 pm

    Create your own custom adapter and set font for the text.

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        // ViewHolder will buffer the assess to the individual fields of the row
        // layout
    
        ViewHolder holder;
        // Recycle existing view if passed as parameter
        // This will save memory and time on Android
        // This only works if the base layout for all classes are the same
        View rowView = convertView;
        if (rowView == null) {
    
            LayoutInflater inflater = context.getLayoutInflater();
            rowView = inflater.inflate(R.layout.main_listview, null, true);
    
            holder = new ViewHolder();
            holder.textView = (TextView) rowView.findViewById(R.id.main_name);
            rowView.setTag(holder);
    
        } else {
            holder = (ViewHolder) rowView.getTag();
        }
    
        Typeface font = Typeface.createFromAsset(getAssets(), "hermesbgbold.otf"); 
        holder.textView.setTypeface(font);
        holder.textView.setText(title);
    
        return rowView;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need a little help getting a tar file to download from a website.
I need a little help getting this jQuery plugin to work correctly for me.
I need a little help with my custom list view adapter. I'm using the
I need some help with overlaying views using the prism framework.Its a little more
I need a little help here: I get a file from an HTML upload
need a little help with this one. I have a form that I am
I need a little help with updating my UI from Runnable/Handler every second. I'm
I need a little help.I'm using a ViewFlipper to change views in TabActivity but
I'm new to using PDO to make db requests and need a little help.
I need a little bit of help with using pointers in C++. Sorry to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.