|
在Android中,如果需要改变控件默认的颜色,包括值的颜色,需要预先在strings.xml中设置,类似字符串,可以反复调用。Android中颜色可以使用drawable或是color来定义。
本例中strings.xml内容:
java代码:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="hello">Hello World, Main!</string>
<string name="app_name">Color</string>
<drawable name="red">#ff0000</drawable>
<color name="gray">#999999</color>
<color name="blue">#0000ff</color>
<color name="background">#ffffff</color>
</resources>
复制代码上面定义了几个颜色值,下面是在布局文件中的调用,main.xml内容:
java代码:
复制代码在Java程序中使用:
java代码: import android.app.Activity;
import android.graphics.Color;
import android.os.Bundle;
import android.widget.TextView;
public class Main extends Activity {
/** Called when the activity is first created. */
TextView tv1,tv2,tv3;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
tv1=(TextView)findViewById(R.id.tv1);
tv2=(TextView)findViewById(R.id.tv2);
tv3=(TextView)findViewById(R.id.tv3);
tv3.setTextColor(Color.BLUE);//直接使用android.graphics.Color的静态变量
tv2.setTextColor(this.getResources().getColor(R.color.blue));//使用预先设置的颜色值
}
}
复制代码源码出处http://www.pocketdigi.com/20110509/266.html |
|