public static void changeTextSize(ViewGroup root, int size, Activity act) { |
for ( int i = 0 ; i < root.getChildCount(); i++) { |
View v = root.getChildAt(i); |
if (v instanceof TextView) { |
((TextView) v).setTextSize(size); |
} else if (v instanceof Button) { |
((Button) v).setTextSize(size); |
} else if (v instanceof EditText) { |
((EditText) v).setTextSize(size); |
} else if (v instanceof ViewGroup) { |
changeTextSize((ViewGroup) v,size,act); |
} |
初级程序员
by: 云代码会员 发表于:2016-10-14 02:43:12 顶(0) | 踩(0) 回复
頂
回复评论