本文整理了Java中android.widget.TextView.getCompoundDrawablePadding()
方法的一些代码示例,展示了TextView.getCompoundDrawablePadding()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。TextView.getCompoundDrawablePadding()
方法的具体详情如下:
包路径:android.widget.TextView
类名称:TextView
方法名:getCompoundDrawablePadding
暂无
代码示例来源:origin: square/assertj-android
public S hasCompoundDrawablePadding(int padding) {
isNotNull();
int actualPadding = actual.getCompoundDrawablePadding();
assertThat(actualPadding) //
.overridingErrorMessage("Expected compound drawable padding <%s> but was <%s>.", padding,
actualPadding) //
.isEqualTo(padding);
return myself;
}
代码示例来源:origin: willowtreeapps/Hyperion-Android
attributeTranslator.translatePx(view.getCompoundDrawablePadding())));
代码示例来源:origin: com.squareup.assertj/assertj-android
public S hasCompoundDrawablePadding(int padding) {
isNotNull();
int actualPadding = actual.getCompoundDrawablePadding();
assertThat(actualPadding) //
.overridingErrorMessage("Expected compound drawable padding <%s> but was <%s>.", padding,
actualPadding) //
.isEqualTo(padding);
return myself;
}
代码示例来源:origin: stackoverflow.com
private void setBackground(TextView textView, DividerDrawable background) {
Drawable drawableLeft = textView.getCompoundDrawables()[0];
int paddingLeft = drawableLeft != null ?
textView.getPaddingLeft() + drawableLeft.getIntrinsicWidth() + textView.getCompoundDrawablePadding() :
textView.getPaddingLeft();
background.setPaddingLeft(paddingLeft);
textView.setBackground(background);
}
代码示例来源:origin: jbruchanov/AnUitor
values.put("InputType", translator.inputType(tv.getInputType()));
values.put("TextScaleX", tv.getTextScaleX());
values.put("CompoundDrawablePadding", tv.getCompoundDrawablePadding());
values.put("CompoundPaddingLeft", tv.getCompoundPaddingLeft());
values.put("CompoundPaddingRight", tv.getCompoundPaddingRight());
代码示例来源:origin: RuffianZhong/RWidgetHelper
int drawablePadding = mView.getCompoundDrawablePadding();
int drawablePaddingHorizontal = drawablePadding;//水平方向上drawable间距
int drawablePaddingVertical = drawablePadding;//垂直方向上drawable间距
代码示例来源:origin: chengzichen/KrGallery
if (((com.dhc.gallery.actionbar.ActionBarMenuItem) child).getChildAt(j) instanceof TextView){
TextView innertext = (TextView) ((com.dhc.gallery.actionbar.ActionBarMenuItem) child).getChildAt(j);
realTextSize = width - innertext.getCompoundDrawablePadding();
Drawable rightDrawable = innertext.getCompoundDrawables()[2];
if (rightDrawable != null){
内容来源于网络,如有侵权,请联系作者删除!