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

旧街凉风 提交于 2020-01-07 08:13:22

问题


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 :)


回答1:


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");


来源:https://stackoverflow.com/questions/20160289/how-change-font-for-text-in-listview-with-custom-font-in-android

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!