我正在开发一个新应用程序,我需要创建一个带有查找的消息接口,使用键来查找值(如 ConstantsWithLookup,但能够接收参数)。我一直在研究 Dictionary 类的功能,但它缺少通过参数自定义消息。
使用 ConstantsWithLookup 我可以进行以下操作:
myConstantsWithLookupInterface.getString("key");
并得到类似的东西:
Field must be filled with numbers
但我需要这样做:
myMessagesWithLookupInterface.getString("key", "param1", "param2",...);
并得到类似的东西:
Field _param1_ must be filled with numbers greater than _param2_
我不知道该怎么做。