Android動態改變Background後Padding無效的問題
阿新 • • 發佈:2019-02-02
在Layout中指定好background和padding以後,程式裡面動態修改background之後padding就失效了,貌似是一個BUG,這裡找到了一篇英文文章,簡單翻譯分享一下。
宣告 歡迎轉載,但請保留文章原始出處:) 部落格園:http://www.cnblogs.com
農民伯伯: http://over140.cnblogs.com
正文
一、折中辦法
1.1方法一
int bottom = theView.getPaddingBottom();int top = theView.getPaddingTop();
int
int left = theView.getPaddingLeft();
theView.setBackgroundResource(R.drawable.entry_bg_with_image);
theView.setPadding(left, top, right, bottom);
1.2方法二
int pad = resources.getDimensionPixelSize(R.dimen.linear_layout_padding);theView.setBackgroundResource(R.drawable.entry_bg_with_image);
theView.setPadding(pad, pad, pad, pad);
程式碼說明:
實際上就是在setBackgroundResource之後重新設定一下padding。
二、原帖網址
三、搜尋關鍵字
GOOGLE:"android setbackgroundresource changes padding"