just curious to know android Graphical components (View) have their own specific renderer or they are using something like AWT, Swing or…?
just curious to know android Graphical components (View) have their own specific renderer or
Share
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.
They have their custom renderer. Android is not using AWT or Swing. The full Android source code is available, so you can dig into it if you feel like it: https://android.googlesource.com (Information on how to download it locally is at http://source.android.com).
Basically, the entire graphics library is custom. Some concepts are similar to J2SE, but that’s about it.