Well this is my simple question. What is the difference between a view and a widget ?
Thank you very much
|
Well this is my simple question. What is the difference between a view and a widget ? Thank you very much |
|||
|
|
|
A Widget is a View. A Layout is a ViewGroup. To create a widget, you extend a View. |
|||||
|
|
|
I don't believe any of the earlier answers are really correct. Different UI toolkits use different terminology for what is often essentially the same thing, and it is true that an Android But "widget" also means something very specific in Android. If you long press on the home screen, you get an "Add to home screen" dialog that offers to add Widgets (among other things). If you touch the Widgets line, you get a menu of widgets like Analog Clock 1 through 4. According to developer.android.com/guide/topics/appwidgets, these are special entities that lets your process display content in another process's View. Like the home screen. There is a special broadcast protocol that you inherit for free, but you also interact with the Views in your developer.android.com/reference/android/widget/RemoteViews.html host via a special protocol that appears to involve marshaling. I have just started to look into writing one (which is how I found this question) but the docs do say that you can only use This is just a bit restrictive! |
|||
|
|
|
Widget is package in Android which contain all user interfaces such button, textView and layout,etc. but view is an abstract class which includes properties, focus and event handling method ,rendering ,etc But all widgets extends the view for getting UI with it behavior such as properties,focus,etc.Thus all widget is an example of view but view is not widget and View group act as container in containing different ui or view that why the frame layout, relative layout,etc extends view group for behaving as container with specific behavior. |
|||
|
|
|
Views are concerned with layouts, placeholders. Widgets are concerned with data, UI behaviors (ex Sliders). Views contain widgets. |
|||
|
I had your same confusion about it, above all for the two packages |
|||
|
|
|
Just some quotation from "The Busy Coder's Guide to Android Development", Ch 6:
|
|||
|
|
view is super class of widget so that a widget is a kind of view. In "pro android 4",the author take them as the same thing. "View,widget,control Each of these represents a UI element.Examples include a button,a grid,a list,a window,a dialog box,and so on.The terms view,widget,and control are used interchangeably in this chapter." |
|||
|
|