我做自定義字體 項目使用了fragment 想用viewGroup遍歷設定自定義字體 我在oncreateview中嵌入了layout 試過oncreateview的參數(shù)viewgroup也確實不為空 可是也沒有子控件View view = inflater.inflate(R.layout.fragment_text,container);寫成這樣吧 確實是有子控件了但貌似是linearlayout之類的控件 不能獲得其中的子控件測試代碼 if (container.getChildCount()==0) {Log.e("Krislq", "container.getChildCount()=0");} else {Log.e("Krislq", "container.getChildCount()=not 0");//container.addView(view);test(container);}求實現(xiàn) fragment 中用viewGroup遍歷設定自定義字體 的代碼……要是在配置文件中能寫個配置就解決就好了 我是設定指非系統(tǒng)自帶的字體……
1 回答

慕俠2389804
TA貢獻1719條經(jīng)驗 獲得超6個贊
@Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View rootView = inflater.inflate(R.layout.fragment_main_dummy, container, false ); if (rootView instanceof ViewGroup){ setAllTypeface((ViewGroup)rootView); } return rootView; } private void setAllTypeface(ViewGroup group) { // TODO Auto-generated method stub for ( int i= 0 ,j=group.getChildCount();i<j;i++){ View view = group.getChildAt(i); if (view instanceof ViewGroup){ setAllTypeface((ViewGroup)view); } else if (view instanceof TextView){ ((TextView)view).setTypeface( null ); } } } |
- 1 回答
- 0 關注
- 262 瀏覽
添加回答
舉報
0/150
提交
取消