Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
ec3dcdd1bb
2 changed files with 31 additions and 22 deletions
|
@ -239,11 +239,11 @@ collectExternalResources.dependsOn collectVoiceAssets,
|
|||
collectMiscResources,
|
||||
copyStyleIcons,
|
||||
updateNoTranslate
|
||||
tasks.whenTaskAdded { task ->
|
||||
if (task.name.startsWith("generate") && task.name.endsWith("Resources")) {
|
||||
task.dependsOn collectExternalResources
|
||||
}
|
||||
}
|
||||
// tasks.whenTaskAdded { task ->
|
||||
// if (task.name.startsWith("generate") && task.name.endsWith("Resources")) {
|
||||
// task.dependsOn collectExternalResources
|
||||
// }
|
||||
// }
|
||||
|
||||
// Legacy core build
|
||||
import org.apache.tools.ant.taskdefs.condition.Os
|
||||
|
|
|
@ -57,6 +57,7 @@ public class TextRenderer {
|
|||
int textWrap = 0;
|
||||
boolean bold = false;
|
||||
String shieldRes = null;
|
||||
String shieldResIcon = null;
|
||||
int textOrder = 100;
|
||||
int textShadowColor = Color.WHITE;
|
||||
|
||||
|
@ -81,6 +82,9 @@ public class TextRenderer {
|
|||
if (render.isSpecified(render.ALL.R_TEXT_SHIELD)) {
|
||||
shieldRes = render.getStringPropertyValue(render.ALL.R_TEXT_SHIELD);
|
||||
}
|
||||
if (render.isSpecified(render.ALL.R_ICON)) {
|
||||
shieldResIcon = render.getStringPropertyValue(render.ALL.R_ICON);
|
||||
}
|
||||
textOrder = render.getIntPropertyValue(render.ALL.R_TEXT_ORDER, 100);
|
||||
}
|
||||
}
|
||||
|
@ -251,23 +255,8 @@ public class TextRenderer {
|
|||
cv.drawTextOnPath(text.text, text.drawOnPath, 0,
|
||||
text.vOffset - ( paintText.ascent()/2 + paintText.descent()), paintText);
|
||||
} else {
|
||||
if (text.shieldRes != null) {
|
||||
float coef = rc.getDensityValue(rc.screenDensityRatio * rc.textScale);
|
||||
Bitmap ico = RenderingIcons.getIcon(context, text.shieldRes);
|
||||
if (ico != null) {
|
||||
float left = text.centerX - ico.getWidth() / 2 * coef - 0.5f;
|
||||
float top = text.centerY - ico.getHeight() / 2 * coef - paintText.descent() - 0.5f;
|
||||
if(rc.screenDensityRatio != 1f){
|
||||
RectF rf = new RectF(left, top, left + ico.getWidth() * coef,
|
||||
top + ico.getHeight() * coef);
|
||||
Rect src = new Rect(0, 0, ico.getWidth(), ico
|
||||
.getHeight());
|
||||
cv.drawBitmap(ico, src, rf, paintIcon);
|
||||
} else {
|
||||
cv.drawBitmap(ico, left, top, paintIcon);
|
||||
}
|
||||
}
|
||||
}
|
||||
drawShieldIcon(rc, cv, text, text.shieldRes);
|
||||
drawShieldIcon(rc, cv, text, text.shieldResIcon);
|
||||
|
||||
drawWrappedText(cv, text, textSize);
|
||||
}
|
||||
|
@ -276,6 +265,26 @@ public class TextRenderer {
|
|||
}
|
||||
}
|
||||
|
||||
private void drawShieldIcon(RenderingContext rc, Canvas cv, TextDrawInfo text, String sr) {
|
||||
if (sr != null) {
|
||||
float coef = rc.getDensityValue(rc.screenDensityRatio * rc.textScale);
|
||||
Bitmap ico = RenderingIcons.getIcon(context, sr);
|
||||
if (ico != null) {
|
||||
float left = text.centerX - ico.getWidth() / 2 * coef - 0.5f;
|
||||
float top = text.centerY - ico.getHeight() / 2 * coef - paintText.descent() - 0.5f;
|
||||
if(rc.screenDensityRatio != 1f){
|
||||
RectF rf = new RectF(left, top, left + ico.getWidth() * coef,
|
||||
top + ico.getHeight() * coef);
|
||||
Rect src = new Rect(0, 0, ico.getWidth(), ico
|
||||
.getHeight());
|
||||
cv.drawBitmap(ico, src, rf, paintIcon);
|
||||
} else {
|
||||
cv.drawBitmap(ico, left, top, paintIcon);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void drawWrappedText(Canvas cv, TextDrawInfo text, float textSize) {
|
||||
if (text.textWrap == 0) {
|
||||
// set maximum for all text
|
||||
|
|
Loading…
Reference in a new issue