user1492748
user1492748

Reputation: 101

Android get current date and show it in TextView

I do not know what is wrong with code below -

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    TextView tv = (TextView) findViewById(R.id.textView1);

    String dt;
    Date cal = (Date) Calendar.getInstance().getTime();
    dt = cal.toLocaleString();
    tv.setText(dt.toString());

}

Upvotes: 10

Views: 92089

Answers (10)

Ganesan J
Ganesan J

Reputation: 646

SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");    
String currentDateandTime = sdf.format(new Date());    
tv.setText(currentDateandTime);

Upvotes: -1

Munene iUwej Julius
Munene iUwej Julius

Reputation: 91

Consider using a TextClock as it will handle updates for you. For more info here is the documentation Docs . AnalogClock and DigitalClock can also be useful if your objective is just to display current time and date

 <TextClock
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textSize="30sp"
    android:format24Hour="MMM,yyyy\n\thh:mm"/>

Upvotes: 3

shubomb
shubomb

Reputation: 832

Calendar c = Calendar.getInstance();
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String formattedDate = df.format(c.getTime());
System.out.println("Currrent Date Time : "+formattedDate);

Upvotes: 0

Roy Hinkley
Roy Hinkley

Reputation: 10641

I suggest:

long date = System.currentTimeMillis(); 

SimpleDateFormat sdf = new SimpleDateFormat("MMM MM dd, yyyy h:mm a");
String dateString = sdf.format(date);   
tvDisplayDate.setText(dateString);

which displays in the following example format

Mon Jan 5, 2009 4:55 PM

You can use whatever format you want - options can be found at Oracle

Upvotes: 30

Puneet Bahuguna
Puneet Bahuguna

Reputation: 31

if you want to generate a toast which is displaying current time on a button click then use this code.

bt.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View arg0) {
            // TODO Auto-generated method stub
            Calendar c = Calendar.getInstance();
            hour = c.get(Calendar.HOUR_OF_DAY);
            min = c.get(Calendar.MINUTE);
            int ds = c.get(Calendar.AM_PM);
            if(ds==0)
            AM_PM="pm";
            else
            AM_PM="am";

            Toast.makeText(MainActivity.this, ""+hour+":"+min+AM_PM, Toast.LENGTH_SHORT).show();


        }
    });

Upvotes: 1

user2258415
user2258415

Reputation: 11

note*:

import java.text.DateFormat;
import java.util.Date;

// Donot import "import java.sql.Date;"

TextView tv = (TextView) findViewById(R.id.textView1);
String ct = DateFormat.getDateInstance().format(new Date());
tv.setText(ct);

Upvotes: 1

Amit Hooda
Amit Hooda

Reputation: 2144

SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd_HHmmss");
String currentDateandTime = sdf.format(new Date());
tv.setText(currentDateandTime);

this is the way how i do it

Upvotes: 3

Ram kiran Pachigolla
Ram kiran Pachigolla

Reputation: 21191

    TextView tv = (TextView) findViewById(R.id.textView1);
    SimpleDateFormat dfDate_day= new SimpleDateFormat("E, dd/MM/yyyy HH:mm:ss");
    String dt="";
    Calendar c = Calendar.getInstance(); 
    data=dfDate_day.format(c.getTime());
    tv.setText(dt);

Upvotes: 2

SubbaReddy PolamReddy
SubbaReddy PolamReddy

Reputation: 2113

use this code:

tvDisplayDate = (TextView) findViewById(R.id.tvDate);


    final Calendar c = Calendar.getInstance();
    yy = c.get(Calendar.YEAR);
    mm = c.get(Calendar.MONTH);
    dd = c.get(Calendar.DAY_OF_MONTH);

    // set current date into textview
    tvDisplayDate.setText(new StringBuilder()
    // Month is 0 based, just add 1
            .append(yy).append(" ").append("-").append(mm + 1).append("-")
            .append(dd));

Upvotes: 15

Raghunandan
Raghunandan

Reputation: 133560

Below solution might help -

final Calendar c = Calendar.getInstance();
mYear = c.get(Calendar.YEAR);
mMonth = c.get(Calendar.MONTH);
mDay = c.get(Calendar.DAY_OF_MONTH);

updateDisplay();

private void updateDisplay() {
    mDateDisplay.setText(
        new StringBuilder()
        // Month is 0 based so add 1
        .append(mMonth + 1).append("-")
        .append(mDay).append("-")
        .append(mYear).append(" "));
}

Upvotes: 5

Related Questions