gpt4 book ai didi

android - 在某些设备上无法在 Android 中设置 textColor

转载 作者:行者123 更新时间:2023-11-29 02:19:41 26 4
gpt4 key购买 nike

我有一个游戏,我需要根据用户输入更改文本的颜色

我使用不同的方法在两个地方更改了文本,这两种方法在某些设备上都失败了,并且 textColor 在这些设备上总是变成黑色并带有白色笔划,但是我从来没有在我的代码中的任何地方添加笔划,到目前为止报告的设备是 Samsung galaxy prime , 小米 Mi A2 Lite, 华为 P20 Pro,但是我在我的一个 friend 的三星 galaxy prime 上试过这个游戏并且运行完美,所以我无法在我的测试设备上产生这个问题

显示问题的图片,所有文本均为黑色,笔触颜色为白色

enter image description here

普通图片

enter image description here

键盘部分的第一个方法我的代码如下

btns[t].setTextColor(ContextCompat.getColor(getContext(),R.color.text_color));

当用户设置夜间模式时,我将其更改为

btns[t].setTextColor(ContextCompat.getColor(getContext(), R.color.text_color_night));

其中颜色是 text_color = #000000/text_color_night = #ffffff

棋盘部分的第二种方法,我的代码是

private final Paint selectedBox = new Paint();

private final TextPaint letterTextNormal = new TextPaint();
private final TextPaint letterTextCorrect = new TextPaint();
private final TextPaint letterTextWrong = new TextPaint();

public PlayboardRenderer(Context con) {
letterTextNormal.setTextAlign(Align.CENTER);
letterTextNormal.setAntiAlias(true);
letterTextNormal.setTypeface(((MainActivity) con).getSelectedFont());

letterTextCorrect.setTextAlign(Align.CENTER);
letterTextCorrect.setAntiAlias(true);
letterTextCorrect.setTypeface(((MainActivity) con).getSelectedFont());

letterTextWrong.setTextAlign(Align.CENTER);
letterTextWrong.setAntiAlias(true);
letterTextWrong.setTypeface(((MainActivity) con).getSelectedFont());
}

private void drawBox(Canvas canvas, int x, int y, int row, int col, float scale, Box box, Word currentWord) {
int boxSize = (int) (BOX_SIZE * scale);

// scale paints
float textSize = (boxSize) - (boxSize / 5);
letterTextNormal.setTextSize(textSize);
letterTextCorrect.setTextSize(textSize);
letterTextWrong.setTextSize(textSize);

if (!box.isBlank() && !box.isEmpty())
if (box.getState() == Box.STATE.NORMAL) {
canvas.drawText(Character.toString(box.getChar()), x + (boxSize / 2), y + (int) (textSize * 0.9), letterTextNormal);
} else if (box.getState() == Box.STATE.WRONG) {
canvas.drawText(Character.toString(box.getChar()), x + (boxSize / 2), y + (int) (textSize * 0.9), letterTextWrong);
} else if (box.getState() == Box.STATE.CORRECT) {
canvas.drawText(Character.toString(box.getChar()), x + (boxSize / 2), y + (int) (textSize * 0.9), letterTextCorrect);
}
}
}

最佳答案

在我终于拿到有这个问题的设备之后我发现它已在设备 Settings>Accessibility>High contrast text

中打开选项

如果用户打开此选项,它会强制所有 TextViews textColor 为黑色或白色

所以你可以在代码中检查用户是否启用了这个选项,并使用下面的代码进行相应的操作

/**
* Returns if the high text contrast in the system is enabled.
* <p>
* <strong>Note:</strong> You need to query this only if you application is
* doing its own rendering and does not rely on the platform rendering pipeline.
* </p>
*
* @return True if high text contrast is enabled, false otherwise.
*
* @hide
*/
public boolean isHighTextContrastEnabled() {
synchronized (mLock) {
IAccessibilityManager service = getServiceLocked();
if (service == null) {
return false;
}
return mIsHighTextContrastEnabled;
}
}

所以在你的代码中,你可以通过这样做来访问这个方法

AccessibilityManager am = (AccessibilityManager) this.getSystemService(Context.ACCESSIBILITY_SERVICE);
boolean isHighTextContrastEnabled = am.isHighTextContrastEnabled();

关于android - 在某些设备上无法在 Android 中设置 textColor,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57176533/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com