如何改變Android tab 的高度和字體大小
原文:https://veright.blog.163.com/blog/static/2834538920101116114716651/
這幾天由於項目原因,需要調整tab 的高度和字體大小,沒少折騰人。。希望能對有此困擾的朋友,盡點綿薄之力。。如果大家找到這裏來了。算是找對地方了。。哈哈哈
直接上代碼,發揚分享至上的互聯網精神。。。
int count = tabWidget.getChildCount(); for (int i = 0; i < count; i++) { View view = tabWidget.getChildTabViewAt(i); view.getLayoutParams().height = 80; //tabWidget.getChildAt(i) final TextView tv = (TextView) view.findViewById(android.R.id.title); tv.setTextSize(28); tv.setTextColor(this.getResources().getColorStateList( android.R.color.white)); }
最後更新:2017-04-02 22:16:31