设置文本视图的填充仅在设置后台资源 - Android后才有效

时间:2014-03-03 10:10:41

标签: android textview

在设置填充后,将背景资源设置为textview的可绘制xml不会填充textview,反之亦然。怎么样?

实施例

作品

   textView.setBackgroundResource(borderColor);
   textView.setPadding(10, 0, 10, 0);

不起作用

   textView.setPadding(10, 0, 10, 0);
   textView.setBackgroundResource(borderColor);

1 个答案:

答案 0 :(得分:4)

更改背景时,将重置填充。这是默认行为。 您可以找到更多相关信息: herehere