のための文字列を取得し、私はこのように働く私のアプリを持っている:翻訳
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