Displaying a default date in a EditText widget

How would I display the current date in the text of a EditText widget dynamically at runtime?

Thanks patrick


Asked by: Adrian262 | Posted: 20-01-2022






Answer 1

If your EditText is declared in the xml file, you have to retrieve it in the code like this

EditText editText = (EditText) findViewById( R.id.your_edittext_id );

Then you can easily update it with the current date

SimpleDateFormat sdf = new SimpleDateFormat( "yyyy/MM/dd" ); 
editText.setText( sdf.format( new Date() ));

Answered by: Blake926 | Posted: 21-02-2022



Answer 2

... even better is using the users locale and formatting options:

editText.setText( DateFormat.getDateInstance().format(new Date()) );

Answered by: Gianna294 | Posted: 21-02-2022



Similar questions

Android Eclipse editText not displaying after setText on local instance

I call on a few EditTexts via "instanceOf" because I don't necessarily know the exact names / ids of them. When I do this to get the text, it works just fine. But when I try to setText() based on the local instanceOf EditText, it won't display the string I am passing it. Oddly enough, when I setText and then Log the getText, it logs it correctly -- it just won't physically display it. I also tested setting th...


android - EditText hint not displaying

Being new to Android Development (c# OOP dev 10+) I ran into a slight snag (2.3.3) I don't know how to address. I have an <EditText.../> that has two parameters that cancel each other out. What I mean is that as an Android user I really appreciate when people use tags such as android:inputType="numberDecimal" for an input field where they expect numbers. This saves me from having t...


android - Displaying edittext input on another activity

I am having quite a simple problem. I want to take an numerical input in an activity then display that on another activity. input.java Button ok = (Button) findViewById(R.id.inputok); ok.setOnClickListener (new OnClickListener () { public void onClick(View vie) {EditText et = (EditText) findViewById(R.id.ei); a = Integer.valueOf(et.getText().toString()); Inten...


java - Add value of edittext and textview together and displaying total in text view

I'm creating a simple android app, which has and editText field and a textView field, the values within these fields are only numeric. I have created a button which on selecting, I would like the value of the edit text and text view to be added together, I would then like the editText to change to a value of '0' and teh total to be displayed in the textView. For example if the editText has a value of 10 a...


java - displaying in EditText in multiple lines

i'm trying to display a row in dataBase in the EditBox . But i am having problems. so far my code is public void ViewEmployeeButton (View view) { DatabaseHandler db = new DatabaseHandler(this); Employee e1 = new Employee(); EditText et=(EditText) findViewById(R.id.employeeId); EditText detailEmp=(EditText) findViewById(R.id.detailEmployee); int id=Integer.getInteger(...


android - EditText setText not displaying

In my onCreate() I have: if(sharedPref.getString("name",null)==""){EditText.setText("Something");} else{EditText.setText(sharedPref.getString("name",null));} And then in my onStop() I have: sharedPrefEditor.putString("name",EditText.getText().toString()); The EditText shows only the hint when I first install and run it. It does seems to display the correct...


android - EditText field displaying data on different tabs

I'm having some pretty strange issues with my app. I have an EditText element, lets call it display, in a reused fragment for each tab. Every time I launch the app I see the following initial behaviour when I click a button that sends text to the output display. I do not use the system keyboard, only my buttons send to the display. The best way to think of this is like a web browser with tabs, you can edit the URL ...


java - Edittext content is displaying zero

I am making an application where i need to take the input from the user and append that input with the string and use that as a url for data parsing But the edit text content is null even though i am entering text in edittext I converted edittext content to string as below EditText edit = (EditText)findViewById(R.Id.tv5); And inside onclicklistener String data = edit.getTe...


java - Displaying result in EditText

MainActivity package com.elitiv.myapplication2.app; import android.os.Bundle; import android.support.v7.app.ActionBarActivity; import android.view.View; import android.widget.Button; import android.widget.EditText; import android.widget.RadioButton; import android.widget.TextView; public class MainActivity extends ActionBarActivity { private EditText Result;...


android - Displaying a test result in an extra EditText

I added to my Layout following paragraph: Layout: <EditText android:id="@+id/EditTextEmissionDetails" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_weight="1" android:gravity="top" android:hint="Emission Details" android:scrollbarStyle="insideOverlay" android:isScrollContainer="true"> &l...


android - Find position of ImageView relative to the image it's displaying

So here's the problem. I am displaying a big image in ImageView and need to find it's position relative to the image. Like this: ╔═══════════════════════════════╗ ║ Image ║ ║──>╔═════════════╗ ║ ║ ║ ImageView ║ ║ ║ ║ ║ ...


android - Displaying thumbnails of images (present at different locations in the sdcard) in a listview

I have several images present in different folders in my sdcard. I would like to display a list of thumbnails. So what I have done is while rendering any row in the list I read the file in an input stream, get the byte array, decode it to obtain a bitmap and set it in an imageview. So far so good. But when I scroll the list, the list scrolls in jerks. I believe this is because decoding a bitmap from byte array tak...


android - Issue with displaying TabHost Layout in new Intent

I am having an issue with using TabHost in a new Intent of type TabActivity which I hope you can point me in the right direction. Funnily it works fine when I try to view it in the original Intent : setContentView(R.layout.main) I get a "forced closed" and within logcat, I get the following error even though my Tabhost id = "@android:id/tabhost": 02-18 22:23:11.937: ERROR/AndroidRuntime(5...


Android: Displaying Images From SDcard

I have an app on the market that displays all photos from the user's SDcard in a gallery. Initially I had out of memory issues, but alleviated those by increasing the inSampleSize in the BitmapFactory options. However, I still have intermittent reports of images not displaying, in some cases none at all. There seems to be a larger proportion of Droid Eris users having problems. Here is the method that loads all photos and ...


Black screen is displaying in Android

I opened my application after I am not doing any kind of operation. I leave the mobile 5 min. After 5 min when I touch the my application it is showing black screen. Is there any way to avoid this idle state?


Android Spinner not displaying list items

I think I am going crazy right now. I am trying to create a spinner populated by a datatable but for some reason the dropdown list items text is not being displayed. I have looked all over and have seen other posts with people having this same problem. Can anyone help?? speciesList = (Spinner) findViewById(R.id.speciesList); spinnerCursor = nsfdb.fetchAllSpecies(); startManagingCursor(spinnerCu...


android - Displaying popup images on button click

Please refer the image given in the url http://docs.google.com/Doc?docid=0AQhgDtGvE2HgZGZ6cmtua185M2RneG5nYmNm&hl=en My query is, How can I display the messages corresponding to the rounded buttons and the table row , when I click on the rounded button with question mark. I know, I ha...


android - Displaying a bitmap of arbitrary size without running out of memory

How do I display an image of arbitrary size without OOMing or downscaling the image. I dont want to downscale due to zooming and dragging of the picture? If it isnt possible to display an image of arbitrary size, how do I determine the maximum possible size of the image to display, without causing a OOM?


Displaying the Time in AM/PM format in android

I am getting the time using a time picker and displaying the time in the text view using following code... private TimePickerDialog.OnTimeSetListener mTimeSetListener = new TimePickerDialog.OnTimeSetListener() { public void onTimeSet(TimePicker view, int hourOfDay, int minute) { Toast.makeText(SendMail.this, "Your Appointment time is "+hourOfDay+":"+minute, Toast.LENGTH_SHORT).show(); ...


java - How to add the coding for displaying the address when a particular set of latitude and longitude is selected into the following codes?

package net.learn2develop.PopularAttractions; import java.io.IOException; import java.util.List; import java.util.Locale; import com.google.android.maps.GeoPoint; import com.google.android.maps.MapActivity; import com.google.android.maps.MapController; import com.google.android.maps.MapView; import android.location.Address; import android.location.Geocoder; import android.os.Bundle; import android.u...






Still can't find your answer? Check out these communities...



Android Google Support | Android Community | Android Community (Facebook) | Dev.io Android



top