我在单击按钮时增加了列表视图的大小,但是当单击按钮时,某些列表视图项的 textview 大小保持默认值,并且不会相应更改。任何想法 ?这是我在列表视图中增加字体大小的一段代码。
int count = mlist.getChildCount();
if (zoom_counter==1){
for(int i=0;i<count;i++){
Button textTab=(Button)mlist.getChildAt(i).findViewById(R.id.myButton);
// if your control is not textview, use your correct one
textTab.setTextSize(TypedValue.COMPLEX_UNIT_DIP,16f);
efficientadapter.notifyDataSetChanged();
}
}