字符串我有我的應用程序以這種方式工作:找翻譯
public static String formatForUI(Calendar today, Calendar date) {
if (today.get(Calendar.YEAR) == date.get(Calendar.YEAR)) {
if (today.get(Calendar.DAY_OF_YEAR) == date.get(Calendar.DAY_OF_YEAR)) {
return "Today";
}
return currentYearDateFormat(date.getTimeInMillis());
} else {
return format(date.getTimeInMillis());
}
}
我想要的「今天」是一個字符串,所以我有它在的strings.xml
<resources>
<string name="today">Today</string>
</resources>
而且我有es \ strings.xml
<resources>
<string name="today">Hoy</string>
</resources>
我試過用getResources(),但它不起作用。我該怎麼做?
「但它不起作用」定義不起作用。 – njzk2
它說「不能解決的符號」 – Trowsing