我正在尝试创建一个具有am/PM油漆的WatchFace,并且我想根据它是am还是PM来选择不同的颜色。我还想把它扩展到一周中的每一天。
SimpleWatchFace.java
Paint ampmPaint = new Paint();
final SimpleDateFormat amorpm = new SimpleDateFormat("a", Locale.US);
if (amorpm.format(new Date()).equals("AM")) {
ampmPaint.setColor(Color.RED);
}
else {
ampmPaint.setColor(Color.GREEN);
}
ampmPaint.setTextSize(context.getResources().getDimension(R.dimen.ampm_size));
ampmPaint.setAntiAlias(true);
ampmPaint.setTextSize(context.getResources().getDimension(R.dimen.ampm_size));
ampmPaint.setAntiAlias(true);
...
public void setAmColor(int color) {
ampmPaint.setColor(color);
}
public void setPmColor(int color) {
ampmPaint.setColor(color);
}
SimpleWatchFaceService.java
@Override
public void onAmbientModeChanged(boolean inAmbientMode) {
super.onAmbientModeChanged(inAmbientMode);
watchFace.setAntiAlias(!inAmbientMode);
if(inAmbientMode) {
watchFace.setPmColor(Color.GRAY);
watchFace.setAmColor(Color.GRAY);
}
else {
watchFace.setPmColor(Color.GREEN);
watchFace.setAmColor(Color.RED);
}
invalidate();
}
到目前为止,颜色在交互模式下工作,但是一旦它进入环境模式并返回交互模式,颜色就不起作用了,我知道我的代码不起作用。我想知道我该如何修复我的代码,让它回到交互模式的颜色
您可以使用u
来获取星期几(1 =星期一,7 =星期日)。还要注意
if (amorpm.equals("AM")){
将始终返回false
,因为您正在检查SimpleDateFormat
是否等于String
。正确的用法是:
SimpleDateFormat amorpm = new SimpleDateFormat("a", Locale.US);
SimpleDateFormat dayofweek = new SimpleDateFormat("u", Locale.US);
if (amorpm.format(new Date()).equals("AM")) {
// AM
...
和(注意现在可以在字符串上设置switch
):
switch (dayofweek.format(new Date()) {
case "1":
// Monday
...
至于环境模式,根据这个问题,你需要一个DisplayListener
来检测。