最佳答案
在我的Android应用中,我将用国际化实现我的字符串。我在语法和不同语言的句子结构方面有问题。
例如:
“5分钟前”;- - - - - -英语
“vor 5 minute”;——德国
我可以在strings.xml中做如下的事情吗?
<string name="timeFormat">{0} minutes ago</string>
然后是魔法
getString(R.id.timeFormat, dynamicTimeValue)
这种行为也可以解决词序不同的问题。