Android 中setMargins和setPadding的区别
Posted 路 宇
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android 中setMargins和setPadding的区别相关的知识,希望对你有一定的参考价值。
一、setMargins表示该按钮控件相对于父控件的距离
LinearLayout.LayoutParams params_btn = new LinearLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, height);
params_btn.setMargins(0,0,0,bottom); //这里的距离为像素px
注:dp转px 公式
int bottom = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 5, this.getResources().getDisplayMetrics());
二、setPadding() 表示按钮中的内容 相对于按钮这个控件的距离
Button btn = new Button(this);
btn.setPadding(bottom,bottom,bottom,bottom);
以上是关于Android 中setMargins和setPadding的区别的主要内容,如果未能解决你的问题,请参考以下文章
“QwtPlotLayout”中没有名为“setMargin”的成员 - 将 Qt4.7 转换为 Qt5.8