博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
设定当前视图中所有控件字体的方法
阅读量:6137 次
发布时间:2019-06-21

本文共 2447 字,大约阅读时间需要 8 分钟。

    

  本范例实现的是对界面中所有的控件一次性的设置字体样式。思路是找到父控件,然后遍历子控件。如果子控件是可以修改文字的控件,那么就设置文字。这用到了控件的继承,很多控件都是继承与textview的,所以将控件均转为textview,最后设置字体即可。

布局文件

 

MainActivity

package com.kale.font;import android.app.Activity;import android.graphics.Typeface;import android.os.Bundle;import android.view.View;import android.view.ViewGroup;import android.widget.Button;import android.widget.EditText;import android.widget.SeekBar;import android.widget.SeekBar.OnSeekBarChangeListener;import android.widget.TextView;public class MainActivity extends Activity {    private static int FLAG = 0;    @Override    protected void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.activity_main);                // Sets fonts for all        final Typeface mFont = Typeface.createFromAsset(getAssets(), "Roboto-Thin.ttf");        final ViewGroup root = (ViewGroup) findViewById(R.id.layout);        setFont(root, mFont,16);        FLAG = 1;//初始化完成后标志位为1,滑动滑块只修改字体大小。不重复指定字体了。                ((SeekBar) findViewById(R.id.seekBar)).setOnSeekBarChangeListener(new OnSeekBarChangeListener() {                        @Override            public void onStopTrackingTouch(SeekBar seekBar) {                            }                        @Override            public void onStartTrackingTouch(SeekBar seekBar) {                            }                        @Override            public void onProgressChanged(SeekBar seekBar, int progress,                    boolean fromUser) {                 setFont(root, mFont,progress);            }        });    }        /*     * Sets the font on all TextViews in the ViewGroup. Searches recursively for     * all inner ViewGroups as well. Just add a check for any other views you     * want to set as well (EditText, etc.)     */    public void setFont(ViewGroup group, Typeface font ,int textSize) {        int count = group.getChildCount();        View v;        for (int i = 0; i < count; i++) {            v = group.getChildAt(i);            if (v instanceof TextView || v instanceof EditText || v instanceof Button) {                if (FLAG == 0) {                    ((TextView) v).setTypeface(font);                }                ((TextView)v).setTextSize(textSize);            } else if (v instanceof ViewGroup)                setFont((ViewGroup) v, font,textSize);        }    }}

 

源码下载:

转载地址:http://askya.baihongyu.com/

你可能感兴趣的文章
Apache通过mod_php5支持PHP
查看>>
发布一个TCP 吞吐性能测试小工具
查看>>
java学习:jdbc连接示例
查看>>
PHP执行批量mysql语句
查看>>
Extjs4.1.x 框架搭建 采用Application动态按需加载MVC各模块
查看>>
Silverlight 如何手动打包xap
查看>>
建筑电气暖通给排水协作流程
查看>>
JavaScript面向对象编程深入分析(2)
查看>>
linux 编码转换
查看>>
POJ-2287 Tian Ji -- The Horse Racing 贪心规则在动态规划中的应用 Or 纯贪心
查看>>
Windows8/Silverlight/WPF/WP7/HTML5周学习导读(1月7日-1月14日)
查看>>
关于C#导出 文本文件
查看>>
使用native 查询时,对特殊字符的处理。
查看>>
maclean liu的oracle学习经历--长篇连载
查看>>
ECSHOP调用指定分类的文章列表
查看>>
分享:动态库的链接和链接选项-L,-rpath-link,-rpath
查看>>
阿里云企业邮箱 在Foxmail 7.0上POP3/IMAP协议设置方法
查看>>
Javascript一些小细节
查看>>
canvas学习总结
查看>>
Javascript的if判断
查看>>