我想通過函數getColor()設置TextView的顏色。我嘗試了很多不同的方式,但我無法正常工作。我的代碼不能編譯。Java - 通過開關盒功能設置顏色
import java.awt.*;
import android.graphics.Color;
public class test extends Activity {
TextView text1 = (TextView) findViewById(R.id.text1);
text1.setTextColor(getcolorss(1));
public Color getColor(int x) {
switch(x) {
case 1: return Color.BLUE;
case 2: return Color.RED;
}
}
}
你會怎麼做呢?
請包括什麼不工作,給出的代碼看起來像它不編譯。爲什麼這不是編譯與我的文本完全不同,當我運行這個時,顏色不會改變。 – 2010-06-17 09:33:25