2011年9月21日

Android: 使用資源Resource中的顏色和字串

首先在/res/values/目錄底下產生一個xml檔
<?xml version=”1.0″ encoding=”utf-8″?>
<resources>
<string name="title">MyCuber</string>
<color  name=”backcolor”>#006fff</color>
</resources>
Java程式使用:
int back_color = getResources().getColor(R.color.backcolor);
String buf     = (String)getResources().getText(R.string.title);
在xml中使用:
<TextView
android:layout_width=”fill_parent”
android:layout_height=”wrap_content”
android:textColor=”@color/backcolor”
android:text=”@string/title”/>

沒有留言: