如何在自定义BaseAdapter中使用自定义字体

时间:2014-10-22 10:10:25

标签: java android

我正在使用Android Studio创建Android应用。 我在使用自定义SimpleAdapter的活动中有listview。 我需要在自定义适配器中使用自定义字体,但是当我尝试它时不起作用。 没有错误,只使用没有字体。直接在活动中使用时,字体路径可以正常工作。

当我退出创建的fonter时,我得到了这个:

E/====﹕ FONT: android.graphics.Typeface@4c5dfbc0

这是我的自定义适配器代码:

package com.myapp.app.utilities;

import android.content.Context;
import android.graphics.Color;
import android.graphics.Typeface;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.SimpleAdapter;
import android.widget.TextView;

import com.fieldly41.app.R;

import java.util.ArrayList;
import java.util.HashMap;

public class SimpleIconAdapter extends SimpleAdapter {

    private ArrayList<HashMap<String, String>> results;

    //private Context context;

    Typeface font;

    public SimpleIconAdapter(Context context, ArrayList<HashMap<String, String>> data, int resource, String[] from, int[] to) {

        super(context, data, resource, from, to);

        this.results = data;

    }

    @Override
    public View getView(int position, View view, ViewGroup parent) {

        View v = view;

        if (v == null) {

            LayoutInflater inflater = (LayoutInflater) parent.getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);

            v = inflater.inflate(R.layout.list_item_icon, null);

        }

        if(results.get(position) != null ) {

            Typeface fonter = Typeface.createFromAsset(v.getResources().getAssets(), "fonts/ss-symbolicons-line.ttf");

            TextView top_label = (TextView) v.findViewById(R.id.top_label);
            TextView icon_label = (TextView) v.findViewById(R.id.icon);
            TextView bottom_label = (TextView) v.findViewById(R.id.bottom_label);

            icon_label.setText("");
            icon_label.setTypeface(fonter);

            if (results.get(position).get("locked").equals("false")) {

                icon_label.setTextColor(Color.WHITE);

            } else {

                icon_label.setTextColor(Color.RED);

            }

            top_label.setText(results.get(position).get("title"));
            bottom_label.setText(results.get(position).get("created_at"));

        }

        return v;

    }

}

2 个答案:

答案 0 :(得分:1)

您的实施已接近正常。

但最大的问题是你在TypeFace方法中创建了一个非常耗费资源的getView()实例。

因为getView()方法在滚动列表时重复调用N次。

从资产中大量加载资源是不好的做法,任何时候都可能导致OutOfMemoryError

所以我的建议是创建公共对象并在getView()中使用。

public SimpleIconAdapter(Context context, ArrayList<HashMap<String, String>> data, int resource, String[] from, int[] to) {

        super(context, data, resource, from, to);
        font=Typeface.createFromAsset(context.getAssets(), "fonts/ss-symbolicons-line.ttf");
        this.results = data;


    }

在getView()中删除此行

Typeface fonter = Typeface.createFromAsset(v.getResources().getAssets(), "fonts/ss-symbolicons-line.ttf");

并使用&#34; font&#34;对象而不是fonter

icon_label.setTypeface(font);

答案 1 :(得分:1)

请尝试这种方式,希望这有助于您解决问题。

由于它是一个listview,我建议你创建一个自定义textview并将其放在行布局xml中。

注意:将所需的字体文件放在assets文件夹中非常重要。

使用自定义字体创建自定义TextView。

<强> CustomTextView.java

public class CustomTextView extends TextView {
    public CustomTextView(Context context) {
        super(context);
        setFont();
    }
    public CustomTextView(Context context, AttributeSet attrs) {
        super(context, attrs);
        setFont();
    }
    public CustomTextView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
        setFont();
    }

    private void setFont() {
        Typeface font = Typeface.createFromAsset(getContext().getAssets(),"fonts/ss-symbolicons-line.ttf");
        setTypeface(font, Typeface.NORMAL);
    }
}

尝试定义自定义TextView,而不是简单的TextView,您希望显示自定义字体。

<强> list_item_icon.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <TextView
        android:id="@+id/top_label"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

    <yourpackagename.CustomTextView
        android:id="@+id/icon"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="5dp"/>

    <TextView
        android:id="@+id/bottom_label"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="5dp"/>
</LinearLayout>

关注自定义TextView声明和初始化,并在使用自定义适配器时尝试使用ViewHolder概念。

public class SimpleIconAdapter extends SimpleAdapter {

    private Context context;
    private ArrayList<HashMap<String, String>> results;

    public SimpleIconAdapter(Context context, ArrayList<HashMap<String, String>> data, int resource, String[] from, int[] to) {
        super(context, data, resource, from, to);
        this.results = data;
        this.context=context;
    }

    @Override
    public View getView(int position, View view, ViewGroup parent) {

        ViewHolder holder;

        if (view == null) {
            holder = new ViewHolder();
            view = LayoutInflater.from(context).inflate(R.layout.list_item_icon, null);
            holder.top_label = (TextView) view.findViewById(R.id.top_label);
            holder.icon_label = (CustomTextView) view.findViewById(R.id.icon);
            holder.bottom_label = (TextView) view.findViewById(R.id.bottom_label);

            view.setTag(holder);
        }else{
            holder = (ViewHolder) view.getTag();
        }

        holder.icon_label.setText("");

        if (results.get(position).get("locked").equals("false")) {
            holder.icon_label.setTextColor(Color.WHITE);
        } else {
            holder.icon_label.setTextColor(Color.RED);
        }

        holder.top_label.setText(results.get(position).get("title"));
        holder.bottom_label.setText(results.get(position).get("created_at"));

        return view;

    }

    class ViewHolder{
        TextView top_label;
        CustomTextView icon_label;
        TextView bottom_label;
    }

}