BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//American Young Coder - ECPv6.10.1.1//NONSGML v1.0//EN
CALSCALE:GREGORIAN
METHOD:PUBLISH
X-ORIGINAL-URL:https://www.ayclogic.com
X-WR-CALDESC:Events for American Young Coder
REFRESH-INTERVAL;VALUE=DURATION:PT1H
X-Robots-Tag:noindex
X-PUBLISHED-TTL:PT1H
BEGIN:VTIMEZONE
TZID:America/Los_Angeles
BEGIN:DAYLIGHT
TZOFFSETFROM:-0800
TZOFFSETTO:-0700
TZNAME:PDT
DTSTART:20240310T100000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0700
TZOFFSETTO:-0800
TZNAME:PST
DTSTART:20241103T090000
END:STANDARD
END:VTIMEZONE
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20240909T190000
DTEND;TZID=America/Los_Angeles:20240909T200000
DTSTAMP:20260421T152518
CREATED:20240910T064324Z
LAST-MODIFIED:20240910T064324Z
UID:26732-1725908400-1725912000@www.ayclogic.com
SUMMARY:7 PM – Intro To Java – Darin
DESCRIPTION:Today We Did:\n\nContinued in Android Studio\, implementing the function for the convert button.\nLearnt how to grab UI elements in code by id\, and manipulate them using getText and setText.\n\nHomework:\n\nComplete the method below inside of MainActivity.java: Grab the other EditText UI element and use .setText() on it to set it with the calculated value for the Celsius.\n\npublic void convertButtonOnClick(View view) {\n    // findViewById will grab the UI (user interface) element by its ID\n    EditText originalTempValue = findViewById(R.id.originalTempValue);\n    String originalTempStr = originalTempValue.getText().toString();\n\n    // Double.parseDouble(string value)\n    // String.valueOf(   int/double value   )\n\n\n    // convert the String originalTempStr to a double\, and then\n    // convert it to its celsius version with the formula:\n    // celsius = (fahrenheit - 32) * 5/9\n\n    // and then\, GRAB the other EditText and name it convertedTempValue\, and use\n    // convertedTempValue.setText(  celsius (as a string)   )\n\n    System.out.println(originalTempStr);\n}\nNotes:\nEmail me at ddjapri@ayclogic.com if you have any questions.
URL:https://www.ayclogic.com/event/7-pm-intro-to-java-darin-22/
CATEGORIES:Introduction To Java,Java
END:VEVENT
END:VCALENDAR