android listview 如何给listview里的textView设置自定义字体,需要自定义BaseAdapter吗?

数据是从SQLite读取的,目前使用SimpleCursorAdapter填充listView,不想使用自定义adapter,怎样设置自定义字体... 数据是从SQLite读取的,目前使用SimpleCursorAdapter填充listView,不想使用自定义adapter,怎样设置自定义字体 展开
 我来答
有车2015
推荐于2018-03-28 · TA获得超过893个赞
知道小有建树答主
回答量:684
采纳率:0%
帮助的人:349万
展开全部
是否自定义BaseAdapter无关,只要你能获取到TextView就可以,设置setTypeface(typeface);//typeface是你的自定义字体。

自定义字体的设置方法
1)Android默认方法 #1
你可以通过ID查找到View,然后挨个为它们设置字体。在单个View的情况下,它看起来也没有那么可怕。
Typeface customFont = Typeface.createFromAsset(this.getAssets(), "fonts/YourCustomFont.ttf");
TextView view = (TextView) findViewById(R.id.activity_main_header);
view.setTypeface(customFont);
2)Android默认方法 #2
你可以为每个文本组件创建一个子类,如TextView、Button等,然后在构造函数中加载自定义字体。
public class BrandTextView extends TextView {

public BrandTextView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
public BrandTextView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public BrandTextView(Context context) {
super(context);
}
public void setTypeface(Typeface tf, int style) {
if (style == Typeface.BOLD) {
super.setTypeface(Typeface.createFromAsset(getContext().getAssets(), "fonts/YourCustomFont_Bold.ttf"));
} else {
super.setTypeface(Typeface.createFromAsset(getContext().getAssets(), "fonts/YourCustomFont.ttf"));
}
}
}
437384801
推荐于2016-08-10 · TA获得超过1867个赞
知道小有建树答主
回答量:1299
采纳率:0%
帮助的人:496万
展开全部

//在这里去实现,在描写子项的视


public View getView(int position, View convertView, ViewGroup parent) {
        // TODO Auto-generated method stub 

            LayoutInflater inflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
            convertView = inflater.inflate(R.layout.area_item, null);
           TextView t= (TextView)convertView.findViewById(R.id.item_area_name);
        t.setFont();
   
        return convertView;
    }
    
   



本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
星斗传媒
2013-10-11
知道答主
回答量:18
采纳率:0%
帮助的人:4.4万
展开全部
是的,自定义个布局,在布局里面改变字体
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
纪念_末班车
2013-10-12 · 超过38用户采纳过TA的回答
知道小有建树答主
回答量:162
采纳率:0%
帮助的人:93.7万
展开全部
继承baseadapter,在getView里textview.set****
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式