我在我的EditText
和Button
次观看中遇到了这个问题,我有一个很好的填充,让他们远离文字,但当我用setBackgroundDrawable
更改背景时setBackgroundResource
填充永远丢失。
答案 0 :(得分:91)
我发现添加一个9补丁作为后台资源重置填充 - 虽然有趣的是如果我添加了一个颜色,或非9补丁图像,它没有。解决方案是在添加背景之前保存填充值,然后再次设置它们。
private EditText value = (EditText) findViewById(R.id.value);
int pL = value.getPaddingLeft();
int pT = value.getPaddingTop();
int pR = value.getPaddingRight();
int pB = value.getPaddingBottom();
value.setBackgroundResource(R.drawable.bkg);
value.setPadding(pL, pT, pR, pB);
答案 1 :(得分:13)
我能够将元素包装在另一个布局中,在本例中为FrameLayout
。这使我能够更改FrameLayout
上的背景,而不会破坏填充RelativeLayout
上的填充。
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/commentCell"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/comment_cell_bg_single" >
<RelativeLayout android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="20dp" >
<ImageView android:id="@+id/sourcePic"
android:layout_height="75dp"
android:layout_width="75dp"
android:padding="5dp"
android:background="@drawable/photoframe"
/>
...
另一个选项是在设置背景Drawable
之后以编程方式设置它,如上所述。只需确保计算像素以校正设备的分辨率。
答案 2 :(得分:11)
我在TextView中遇到了这个问题,因此我将TextView子类化并创建了TextView.setBackgroundResource(int resid)
方法的Override方法。像这样:
@Override
public void setBackgroundResource(int resid) {
int pl = getPaddingLeft();
int pt = getPaddingTop();
int pr = getPaddingRight();
int pb = getPaddingBottom();
super.setBackgroundResource(resid);
this.setPadding(pl, pt, pr, pb);
}
这样,它在设置资源之前获取项目的填充,但实际上并没有弄乱方法的原始功能,除了保持填充。
答案 3 :(得分:9)
没有彻底测试过这种超级,但这种方法可能有用:
/**
* Sets the background for a view while preserving its current padding. If the background drawable
* has its own padding, that padding will be added to the current padding.
*
* @param view View to receive the new background.
* @param backgroundDrawable Drawable to set as new background.
*/
public static void setBackgroundAndKeepPadding(View view, Drawable backgroundDrawable) {
Rect drawablePadding = new Rect();
backgroundDrawable.getPadding(drawablePadding);
int top = view.getPaddingTop() + drawablePadding.top;
int left = view.getPaddingLeft() + drawablePadding.left;
int right = view.getPaddingRight() + drawablePadding.right;
int bottom = view.getPaddingBottom() + drawablePadding.bottom;
view.setBackgroundDrawable(backgroundDrawable);
view.setPadding(left, top, right, bottom);
}
使用它代替view.setBackgroundDrawable(Drawable)。
答案 4 :(得分:2)
CottonBallPaws回答的向后兼容版本
ERROR: error de sintaxis en o cerca de «p»
LINE 6: Sum(IF p LIKE '%add%' AND p NOT LIKE '%add pos...
^
********** Error **********
ERROR: error de sintaxis en o cerca de «p»
SQL state: 42601
Character: 216
答案 5 :(得分:1)
对于普通搜索者,
在setBackgroudDrawable之后添加setPadding。当你改变你的drawable时,你必须再次调用setPadding。
像:
view.setBackgroundDrawable(backgroundDrawable);
view.setPadding(x, x, x, x);
最简洁的方法是在xml-drawable中定义你的填充,指向drawable-image-file
Greatings
答案 6 :(得分:1)
我的解决方案是扩展视图(在我的情况下是 EditText )并覆盖setBackgroundDrawable()
和setBackgroundResource()
方法:
// Stores padding to avoid padding removed on background change issue
public void storePadding(){
mPaddingLeft = getPaddingLeft();
mPaddingBottom = getPaddingTop();
mPaddingRight = getPaddingRight();
mPaddingTop = getPaddingBottom();
}
// Restores padding to avoid padding removed on background change issue
private void restorePadding() {
this.setPadding(mPaddingLeft, mPaddingTop, mPaddingRight, mPaddingBottom);
}
@Override
public void setBackgroundResource(@DrawableRes int resId) {
storePadding();
super.setBackgroundResource(resId);
restorePadding();
}
@Override
public void setBackgroundDrawable(Drawable background) {
storePadding();
super.setBackgroundDrawable(background);
restorePadding();
}
答案 7 :(得分:0)
您可以使用9-patch图像并在drawable中定义内容区域来提供一些填充。 Check this
您还可以从xml或以编程方式设置布局中的填充
xml padding标签
android:padding
android:paddingLeft
android:paddingRight
android:paddingTop
android:paddingBottom
通过在EditText或Button Views上调用setPadding来调用setBackgroundDrawable后,可以尝试从代码中手动设置填充
答案 8 :(得分:0)
在这样的android studio中将lib更改为v7:22.1.0 编译&#39; com.android.support:appcompat-v7:22.1.0&#39;
答案 9 :(得分:0)
大多数答案都是正确的,但应正确处理背景设置。
首先获取视图的填充
//Here my view has the same padding in all directions so I need to get just 1 padding
int padding = myView.getPaddingTop();
然后设置背景
//If your are supporting lower OS versions make sure to verify the version
if(android.os.Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.JELLY_BEAN) {
//getDrawable was deprecated so use ContextCompat
myView.setBackgroundDrawable(ContextCompat.getDrawable(context, R.drawable.bg_accent_underlined_white));
} else {
myView.setBackground(ContextCompat.getDrawable(context, R.drawable.bg_accent_underlined_white));
}
然后在背景更改之前设置视图的填充
myView.setPadding(padding, padding, padding, padding);
答案 10 :(得分:0)
我找到了另一个解决方案。 我正面临着与Buttons类似的问题。 最后,我补充道:
android:scaleX= "0.85"
android:scaleY= "0.85"
它对我有用。默认填充几乎相同。
答案 11 :(得分:0)
结合所有人的解决方案,我在Kotlin写了一篇:
fun View.setViewBackgroundWithoutResettingPadding(@DrawableRes backgroundResId: Int) {
val paddingBottom = this.paddingBottom
val paddingStart = ViewCompat.getPaddingStart(this)
val paddingEnd = ViewCompat.getPaddingEnd(this)
val paddingTop = this.paddingTop
setBackgroundResource(backgroundResId)
ViewCompat.setPaddingRelative(this, paddingStart, paddingTop, paddingEnd, paddingBottom)
}
fun View.setViewBackgroundWithoutResettingPadding(background: Drawable?) {
val paddingBottom = this.paddingBottom
val paddingStart = ViewCompat.getPaddingStart(this)
val paddingEnd = ViewCompat.getPaddingEnd(this)
val paddingTop = this.paddingTop
ViewCompat.setBackground(this, background)
ViewCompat.setPaddingRelative(this, paddingStart, paddingTop, paddingEnd, paddingBottom)
}
答案 12 :(得分:0)
只说明正在发生的事情:
这实际上是一个功能。您可能用作背景的布局可绘制对象可以通过以下方式定义填充:
<layer-list
xmlns:android="http://schemas.android.com/apk/res/android"
android:paddingRight="8dp"
>
...
</layer-list>
此填充将与新的可绘制背景一起设置。没有填充时,默认值为0。
Romain Guy撰写的电子邮件中的更多信息: https://www.mail-archive.com/android-developers@googlegroups.com/msg09595.html
答案 13 :(得分:0)
在我的情况下,我有一个可绘制对象,但它是如此愚蠢,以至于我看不到xml中的填充都设置为0。
答案 14 :(得分:-1)
这里是改进版的cottonBallPaws&#39; setBackgroundAndKeepPadding。即使您多次调用该方法,这也可以保持填充:
/**
* Sets the background for a view while preserving its current padding. If the background drawable
* has its own padding, that padding will be added to the current padding.
*/
public static void setBackgroundAndKeepPadding(View view, Drawable backgroundDrawable) {
Rect drawablePadding = new Rect();
backgroundDrawable.getPadding(drawablePadding);
// Add background padding to view padding and subtract any previous background padding
Rect prevBackgroundPadding = (Rect) view.getTag(R.id.prev_background_padding);
int left = view.getPaddingLeft() + drawablePadding.left -
(prevBackgroundPadding == null ? 0 : prevBackgroundPadding.left);
int top = view.getPaddingTop() + drawablePadding.top -
(prevBackgroundPadding == null ? 0 : prevBackgroundPadding.top);
int right = view.getPaddingRight() + drawablePadding.right -
(prevBackgroundPadding == null ? 0 : prevBackgroundPadding.right);
int bottom = view.getPaddingBottom() + drawablePadding.bottom -
(prevBackgroundPadding == null ? 0 : prevBackgroundPadding.bottom);
view.setTag(R.id.prev_background_padding, drawablePadding);
view.setBackgroundDrawable(backgroundDrawable);
view.setPadding(left, top, right, bottom);
}
您需要通过values / ids.xml定义资源ID:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<item name="prev_background_padding" type="id"/>
</resources>
答案 15 :(得分:-1)
我使用这个非常简单的解决方法我在accentColor
中定义了style.xml
,如下所示
<item name="colorAccent">#0288D1</item>
然后我在Button
标记
style="@style/Base.Widget.AppCompat.Button.Colored"
style="@style/Base.Widget.AppCompat.Button.Small"
例如:
<Button
android:id="@+id/btnLink"
style="@style/Base.Widget.AppCompat.Button.Colored"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/tvDescription"
android:textColor="@color/textColorPrimary"
android:text="Visit Website" />
<Button
android:id="@+id/btnSave"
style="@style/Base.Widget.AppCompat.Button.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/tvDescription"
android:layout_toRightOf="@id/btnLink"
android:textColor="@color/textColorPrimaryInverse"
android:text="Save" />