Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
[CODE=java]int yearPickerId = Resources.getSystem().getIdentifier("date_picker_header_year", "id", "android");
TextView yearPicker = view.findViewById(yearPickerId);
if (yearPicker != null) {
yearPicker.setContentDescription(getString(R.string.year_picker_content_description, year));
}
[CODE]int monthPickerId = Resources.getSystem().getIdentifier("month_view", "id", "android");
TextView monthPicker = view.findViewById(monthPickerId);