iOS アプリを Android に変換しようとしていますが、移植できないことがわかっているので、最初から書きました この通知を Android Java コードに変換するにはどうすればよいですか?
-(IBAction)turnon {
NSDateComponents *comps = [[NSDateComponents alloc] init];
[comps setDay:28];
[comps setMonth:9];
[comps setYear:2012];
[comps setHour:8];
[comps setMinute:25];
NSCalendar *gregorian = [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
NSDate *fireDate = [gregorian dateFromComponents:comps];
UILocalNotification *alarm = [[UILocalNotification alloc] init];
alarm.fireDate = fireDate;
alarm.repeatInterval = NSDayCalendarUnit;
alarm.soundName = @"msl.aiff";
alarm.alertBody = @"This is a message..";
alarm.timeZone = [NSTimeZone defaultTimeZone];
[[UIApplication sharedApplication] scheduleLocalNotification:alarm];
私は今4時間ほどウェブを検索しましたが、これはAndroid開発者にとっては簡単だと思いますが、始めたばかりなので、これを行う方法がわかりません.
どんな助けでも本当に感謝しています!