私はアンドロイドが初めてで、アプリケーションを開発しました。今、日付を追跡する必要がある月額サブスクリプションを適用したいので、次のコードを試しました
try {
before = (Date)formatter.parse(date);
} catch (ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
Date now = new Date();
long diff = now.getTimeInMillis() - before.getTimeInMillis();
long days = diff / ONE_DAY;
if(days > 30) { // More than 30 days?
// Expired !!!
}
long diff = now.getTimeInMillis() - before.getTimeInMillis(); でエラーが発生します。
では、これに代わるものは何か教えてください。