I have to access Current system and display in EditView in android.I am using this code.please help me.
EditText editText = (EditText) findViewById( R.id.your_edittext_id );
SimpleDateFormat sdf = new SimpleDateFormat( "yyyy/MM/dd" );
editText.setText( sdf.format( new Date() ));