選択した日付を文字列に変換したいので、私はMain2Activity.javaでEXTRA_TEXTの助けを借りて使用できます。選択した日付を文字列に変換
アドバイスをいただきありがとうございます。
cal = (CalendarView) findViewById(R.id.calendar);
cal.setOnDateChangeListener(new CalendarView.OnDateChangeListener() {
public void onSelectedDayChange(CalendarView view, int year,int month, int day) {
Intent intent= new Intent(MainActivity.this, Main2Activity.class);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK);
startActivity(intent);
}
});
?あなたはどんな問題に直面しましたか? – njzk2
私はそれを変換することができません..私はウェブ上で検索したが、完璧な結果を得ることができません.. –
何を試してみましたか? – njzk2