Is the control shown in the image below built-in in the Android Framework or it is a custom control. If it is custom control, should it be built using a button with background that pops a calendar dialog on click?

Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
These are just normal TextViews with a custom background selector and an
OnClickListenerthat triggers the dialog.If you want to know how a certain view or layout is built, you can use a tool called
hierachyviewer(which I used here too). It shows the view hierachy of running apps on your device and is included in the Android SDK in yourANDROID_SDK/toolsdirectory. The program is a bit unintuitive at first, but certainly a useful thing to know. See the documentation for more information about this.