本文整理了Java中android.widget.TextView.getShadowRadius()
方法的一些代码示例,展示了TextView.getShadowRadius()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。TextView.getShadowRadius()
方法的具体详情如下:
包路径:android.widget.TextView
类名称:TextView
方法名:getShadowRadius
暂无
代码示例来源:origin: square/assertj-android
@TargetApi(JELLY_BEAN)
public S hasShadowRadius(float radius) {
isNotNull();
float actualRadius = actual.getShadowRadius();
assertThat(actualRadius) //
.overridingErrorMessage("Expected shadow radius <%s> but was <%s>.", radius,
actualRadius) //
.isEqualTo(radius);
return myself;
}
代码示例来源:origin: com.squareup.assertj/assertj-android
@TargetApi(JELLY_BEAN)
public S hasShadowRadius(float radius) {
isNotNull();
float actualRadius = actual.getShadowRadius();
assertThat(actualRadius) //
.overridingErrorMessage("Expected shadow radius <%s> but was <%s>.", radius,
actualRadius) //
.isEqualTo(radius);
return myself;
}
代码示例来源:origin: garretyoder/app-theme-engine
@TargetApi(Build.VERSION_CODES.JELLY_BEAN)
@Override
public void process(@NonNull Context context, @Nullable String key, @NonNull View view, @NonNull String suffix) {
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN)
return;
final TextView tv = (TextView) view;
final ColorResult result = getColorFromSuffix(context, key, view, suffix);
if (result == null) return;
tv.setShadowLayer(tv.getShadowRadius(), tv.getShadowDx(), tv.getShadowDy(), result.getColor());
}
}
代码示例来源:origin: jbruchanov/AnUitor
values.put("ShadowDX", tv.getShadowDx());
values.put("ShadowDY", tv.getShadowDy());
values.put("ShadowRadius", tv.getShadowRadius());
values.put("IsCursorVisible", tv.isCursorVisible());
代码示例来源:origin: xuancao/DynamicSkin
if (Build.VERSION.SDK_INT <= Build.VERSION_CODES.JELLY_BEAN) return;
final TextView tv = (TextView) current;
tv.setShadowLayer(tv.getShadowRadius(), tv.getShadowDx(), tv.getShadowDy(),
Config.primaryColor(context, key));
break;
if (Build.VERSION.SDK_INT <= Build.VERSION_CODES.JELLY_BEAN) return;
final TextView tv = (TextView) current;
tv.setShadowLayer(tv.getShadowRadius(), tv.getShadowDx(), tv.getShadowDy(),
Config.primaryColorDark(context, key));
break;
if (Build.VERSION.SDK_INT <= Build.VERSION_CODES.JELLY_BEAN) return;
final TextView tv = (TextView) current;
tv.setShadowLayer(tv.getShadowRadius(), tv.getShadowDx(), tv.getShadowDy(),
Config.accentColor(context, key));
break;
if (Build.VERSION.SDK_INT <= Build.VERSION_CODES.JELLY_BEAN) return;
final TextView tv = (TextView) current;
tv.setShadowLayer(tv.getShadowRadius(), tv.getShadowDx(), tv.getShadowDy(),
Config.textColorPrimary(context, key));
break;
if (Build.VERSION.SDK_INT <= Build.VERSION_CODES.JELLY_BEAN) return;
final TextView tv = (TextView) current;
tv.setShadowLayer(tv.getShadowRadius(), tv.getShadowDx(), tv.getShadowDy(),
Config.textColorPrimaryInverse(context, key));
break;
内容来源于网络,如有侵权,请联系作者删除!