Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何从 strings.xml 获取字符串?
我尝试过的事情
getString(R.string.id);
context.getString(R.string.id);
getResources().getString(R.string.id);
没有任何效果。
您尝试执行此操作的类需要扩展 Activity(或 Application)或传递 Activity/Application 上下文,以便了解这些方法。否则,您正在做的事情是正确的。
只要您在课堂扩展活动中,最后一个应该可以工作