android:fix type cast error

This commit is contained in:
pengfei.zhou 2020-09-11 10:34:03 +08:00 committed by osborn
parent fc6b465b92
commit ed5c2103b0
2 changed files with 30 additions and 26 deletions

View File

@ -354,6 +354,9 @@ public class ImageNode extends ViewNode<ImageView> {
loadImageUrl(prop.asString().value()); loadImageUrl(prop.asString().value());
break; break;
case "scaleType": case "scaleType":
if (!prop.isNumber()) {
return;
}
int scaleType = prop.asNumber().toInt(); int scaleType = prop.asNumber().toInt();
switch (scaleType) { switch (scaleType) {
case 1: case 1:

View File

@ -267,7 +267,7 @@ public abstract class ViewNode<T extends View> extends DoricContextHolder {
} }
JSValue orientation = dict.asObject().getProperty("orientation"); JSValue orientation = dict.asObject().getProperty("orientation");
if (orientation.isNumber()) {
switch (orientation.asNumber().toInt()) { switch (orientation.asNumber().toInt()) {
case 0: case 0:
linearGradient = new LinearGradient(0.f, 0.f, 0.f, height, colors, locations, Shader.TileMode.CLAMP); linearGradient = new LinearGradient(0.f, 0.f, 0.f, height, colors, locations, Shader.TileMode.CLAMP);
@ -294,6 +294,7 @@ public abstract class ViewNode<T extends View> extends DoricContextHolder {
linearGradient = new LinearGradient(0.f, 0.f, width, height, colors, locations, Shader.TileMode.CLAMP); linearGradient = new LinearGradient(0.f, 0.f, width, height, colors, locations, Shader.TileMode.CLAMP);
break; break;
} }
}
return linearGradient; return linearGradient;
} }