使用节标题将自定义字体应用于列表视图

时间:2013-04-11 18:20:32

标签: android listview fonts

我的代码如下:

public class SeparatedListAdapter extends BaseAdapter
    {
        public final Map<String, Adapter> sections = new LinkedHashMap<String, Adapter>();
        public final ArrayAdapter<String> headers;
        public final static int TYPE_SECTION_HEADER = 0;

        public SeparatedListAdapter(Context context)
            {
                headers = new ArrayAdapter<String>(context, R.layout.list_header);
            }

        public void addSection(String section, Adapter adapter)
            {
                this.headers.add(section);
                this.sections.put(section, adapter);
            }

        @Override
        public Object getItem(int position)
            {
                for (Object section : this.sections.keySet())
                    {
                        Adapter adapter = sections.get(section);
                        int size = adapter.getCount() + 1;

                        // check if position inside this section
                        if (position == 0) {
                            return section;
                        }
                        if (position < size) {
                            return adapter.getItem(position - 1);
                        }

                        // otherwise jump into next section
                        position -= size;
                    }
                return null;
            }

        @Override
        public int getCount()
            {
                // total together all sections, plus one for each section header
                int total = 0;
                for (Adapter adapter : this.sections.values()) {
                    total += adapter.getCount() + 1;
                }
                return total;
            }

        @Override
        public int getViewTypeCount()
            {
                // assume that headers count as one, then total all sections
                int total = 1;
                for (Adapter adapter : this.sections.values()) {
                    total += adapter.getViewTypeCount();
                }
                return total;
            }

        @Override
        public int getItemViewType(int position)
            {
                int type = 1;
                for (Object section : this.sections.keySet())
                    {
                        Adapter adapter = sections.get(section);
                        int size = adapter.getCount() + 1;

                        // check if position inside this section
                        if (position == 0) {
                            return TYPE_SECTION_HEADER;
                        }
                        if (position < size) {
                            return type + adapter.getItemViewType(position - 1);
                        }

                        // otherwise jump into next section
                        position -= size;
                        type += adapter.getViewTypeCount();
                    }
                return -1;
            }

        public boolean areAllItemsSelectable()
            {
                return false;
            }

        @Override
        public boolean isEnabled(int position)
            {
                return (getItemViewType(position) != TYPE_SECTION_HEADER);
            }

        @Override
        public View getView(int position, View convertView, ViewGroup parent)
            {
                int sectionnum = 0;
                for (Object section : this.sections.keySet())
                    {
                        Adapter adapter = sections.get(section);
                        int size = adapter.getCount() + 1;

                        // check if position inside this section
                        if (position == 0) {
                            return headers.getView(sectionnum, convertView, parent);
                        }
                        if (position < size) {
                            return adapter.getView(position - 1, convertView, parent);
                        }

                        // otherwise jump into next section
                        position -= size;
                        sectionnum++;
                    }
                return null;
            }

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

    }

HEADER.xml

<!-- list_header.xml -->
<TextView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/list_header_title"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:paddingTop="2dip"
    android:paddingBottom="2dip"
    android:paddingLeft="5dip"
    android:textSize="20sp"
    style="?android:attr/listSeparatorTextViewStyle" />

LIST_ITEM.xml

<?xml version="1.0" encoding="utf-8"?>
<!-- list_item.xml -->
<TextView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/list_item_title"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:paddingTop="15dip"
    android:paddingBottom="15dip"
    android:paddingLeft="15dip"
    android:textSize="24sp"/>

我的设置如下:

adapter.addSection(header, new ArrayAdapter<String>(this, R.layout.list_item, array));

一切正常。现在我需要以程序方式将自定义字体.ttf添加到标题和部分如何操作?

1 个答案:

答案 0 :(得分:3)

getView方法中,您可以替换以下行

if (position == 0) {
    return headers.getView(sectionnum, convertView, parent);
}
if (position < size) {
    return adapter.getView(position - 1, convertView, parent);
}

View view = null;
if (position == 0) {
    view = headers.getView(sectionnum, convertView, parent);
    if(view != null) {
        TextView text = (TextView) view.findViewById(R.id.list_header_title);
        if(text != null) {
            text.setTypeface(myTypeface);
        }
    }
    return view;
}
if (position < size) {
    view = adapter.getView(position - 1, convertView, parent);
    TextView text = (TextView) view.findViewById(R.id.list_item_title);
    if(view != null) {
        if(text != null) {
            text.setTypeface(myTypeface);
        }
    }
    return view;
}

myTypeFaceTypeFace类型的成员,并在构造函数中加载,如下所示:

private TypeFace myTypeFace = null;    

public SeparatedListAdapter(Context context)
{
    headers = new ArrayAdapter<String>(context, R.layout.list_header);
    myTypeface = Typeface.createFromAsset(context.getAssets(), "fonts/myFont.ttf");
}    

这会将assets/fonts/myFont.ttf中放置的字体分配给您的文字视图。但是你应该注意,如果你需要在你的应用程序的其他地方使用该字体,你可能不应该把它放在适配器中,而是从自定义字体管理器或其他东西加载它,因为旧版本的android在{时不会缓存字体调用{1}}会导致不必要的内存消耗。