我們都知道,Android中在一個Activity或是service中可以用this.getString(R.string,test);來獲取字符串,但如果這樣呢?
publicclass myTestClass{ public static
final String MYTEST = "this is a
test"; //如果這個字符串是在string.xml中,該如何獲取該值
//this.getString()無法獲取
}
如果你想要系統級別的,可以這樣.
Resources.getSystem().getString(android.R.string.xxxxxx);
android.R.string.xxxxxx 為系統中已經定義的資源.