逐渐改变GPS中的圆圈颜色

时间:2018-11-15 22:32:32

标签: java android

我有一个简单的GPS活动,可以跟踪用户一个圆圈。

public static int GetIntMaxValueGenius1()
{
    int n = 0;
    while (++n > 0) { }
    return --n;
}

public static int GetIntMaxValueGenius2()
{
    int n = 0;
    try
    {
        while (true)
            n = checked(n + 1);
    }
    catch { }
    return n;
}

我想做的是即使用户改变位置,也要不断在黑色和白色之间逐渐改变圆圈的颜色。 我知道我可以使用.color更改属性,但是更改不是很顺利。也许通过使用和处理程序?

0 个答案:

没有答案