Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
153 views
in Technique[技术] by (71.8m points)

how change font for text in listview with custom font in android?

I am developing some app. which contains listview and i want to display the text with custom font .. i am using this code in BaseAdapter class but when i use it the text is disappeared

TextView text = (TextView) vi.findViewById(R.id.text); // title

tf = Typeface.createFromAsset(activity.getAssets(), "fonts/Vijaya.ttf");
text.setTypeface(tf);
text.setText(quote.get(QuotesActivity.KEY_TEXT));

this is my full code:

class:

package com.engahmedphp.successquotes;

import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.HashMap;

import android.app.Activity;
import android.content.Context;
import android.content.res.AssetManager;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Typeface;

import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.ImageView;
import android.widget.TextView;

public class LazyQuotesAdapter extends BaseAdapter {

    private Activity activity;
    private ArrayList<HashMap<String, String>> data;
    private static LayoutInflater inflater = null;
    Context context;
    Typeface tf;
    public LazyQuotesAdapter(Activity a, ArrayList<HashMap<String, String>> d) {
        activity = a;
        data = d;
        context = a;

        inflater = (LayoutInflater) activity.getSystemService(Context.LAYOUT_INFLATER_SERVICE);

    }

    // ==============================================================================

    public int getCount() {
        return data.size();
    }

    // ==============================================================================

    public Object getItem(int position) {
        return position;
    }

    // ==============================================================================

    public long getItemId(int position) {
        return position;
    }

    // ==============================================================================

    public View getView(int position, View convertView, ViewGroup parent) {
        View vi = convertView;
        if (convertView == null)
            vi = inflater.inflate(R.layout.quote_list_row, null);

        TextView text = (TextView) vi.findViewById(R.id.text); // title

         tf = Typeface.createFromAsset(activity.getAssets(), "fonts/Vijaya.ttf");
         text.setTypeface(tf);
        TextView author = (TextView) vi.findViewById(R.id.author); // category
        ImageView picture = (ImageView) vi.findViewById(R.id.picture); // thumb

        HashMap<String, String> quote = new HashMap<String, String>();
        quote = data.get(position);

        // Setting all values in listview

        text.setText(quote.get(QuotesActivity.KEY_TEXT));

        author.setText(quote.get(QuotesActivity.KEY_AUTHOR));

        // String picPath = Environment.getExternalStorageDirectory().getPath()
        // + "/FacebookFeedsNotifier/" + quote.get(QuotesActivity.KEY_PICTURE);
        // name.setText(picPath);
        AssetManager assetManager = context.getAssets();
        InputStream istr = null;
        try {
            istr = assetManager.open("pictures/" + quote.get(QuotesActivity.KEY_PICTURE));
        } catch (IOException e) {
            Log.e("assets", assetManager.toString());
            e.printStackTrace();
        }
        Bitmap bmp = BitmapFactory.decodeStream(istr);
        picture.setImageBitmap(bmp);

        return vi;
    }
}

view :

 <TextView
        android:id="@+id/text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignTop="@+id/thumbnail"
        android:layout_toRightOf="@+id/thumbnail"
        android:text="Rihanna Love the way lie"
        android:textColor="#FFF"
        android:textSize="18sp"
       />

Thanks in advance :)

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Try this.. Use it Inside Your LazyQuotesAdapter constructor

public LazyQuotesAdapter(Activity a, ArrayList<HashMap<String, String>> d) {
        activity = a;
        data = d;
        context = a;

        inflater = (LayoutInflater) activity.getSystemService(Context.LAYOUT_INFLATER_SERVICE);

        tf = Typeface.createFromAsset(context.getAssets(), "fonts/Vijaya.ttf");

    }

OR

tf = Typeface.createFromAsset(vi.getContext().getAssets(), "fonts/Vijaya.ttf");

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

1.4m articles

1.4m replys

5 comments

56.9k users

...