import android.graphics.Color;
import java.util.Random;
public class Colors {
public String[] mColors = {
"#39add1", // light blue
"#3079ab", // dark blue
};
public int getColor(){
String colors="";
//Randomly select
Random ran = new Random();
int random = ran.nextInt(mColors.length);
colors= mColors[random];
return Color.parseColor(colors);
}
}
它给出了返回线参数颜色的错误。它说长度必须至少为1(为0)。我该如何解决这个问题?为什么这么说?