如何使用自定义适配器使用自定义字体

时间:2014-08-23 12:31:33

标签: android adapter custom-font getview

我使用的是简单的ListAdapter。我想在其中使用自定义字体。我被建议使用getView()但作为初学者,我不知道使用自定义适配器。有人可以帮助它。

1 个答案:

答案 0 :(得分:-1)

首先将任何ttf文件放入资产文件夹,然后像这样放在你的文本视图中

字体face = Typeface.createFromAsset(getAssets(),                                 precious.ttf); //或任何其他你想要的

                    String edittextString = title.getText().toString();

                    title.setText("");
                    title.setTypeface(face);
                    title.setTextColor(Color.parseColor(hexColor));
                    if (edittextString != null) {
                        title.setText(edittextString);
                    }