Is there a real difference (other than terminology) between a widget and a view? Which is the one I can put into my app just like a standard SeekBar or a Button?
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.
A View is an object that you can put on your layout such as a TextView, EditText, ListView, or ImageView. It is the basic building block for user interface components.
http://developer.android.com/reference/android/view/View.html
A widget is a group of ViewGroups and Views that you can put on the users home screen or in another application.
http://developer.android.com/guide/topics/appwidgets/index.html