AbsoluteLayout.LayoutParams layoutparams = new AbsoluteLayout.LayoutParams((int) (datashow.nWidth * wr), (int) (datashow.nHeight * hr), (int) (datashow.nLp * wr), (int) (datashow.nTp * hr)); Button buttonView = new Button(this); buttonView.setPadding(1, 1, 1, 1);// 让数字全部显示出来 Button dataView = updateDataShow(buttonView, datashow); abslayout.addView(dataView, layoutparams);
原因:button上文字与button的框边界距离太大,导致文字无法显示全部
解决:设置pad
本文出自 “信息安全-数据库安全” 博客,请务必保留此出处http://fergusj.blog.51cto.com/8835051/1689214
原文地址:http://fergusj.blog.51cto.com/8835051/1689214