我有一个从 LinearLayout 扩展的类。我想使用 string.xml 中的字符串。通常我使用以下代码:
this.getString(R.string.xxxx);
但是由于我的类是从 LinearLayout 扩展的,所以我不能调用 getString() 方法。如何从我的班级访问我的 string.xml 中的那些字符串?
我有一个从 LinearLayout 扩展的类。我想使用 string.xml 中的字符串。通常我使用以下代码:
this.getString(R.string.xxxx);
但是由于我的类是从 LinearLayout 扩展的,所以我不能调用 getString() 方法。如何从我的班级访问我的 string.xml 中的那些字符串?