Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Well this is my simple question. What is the difference between a view and a widget ?

Thank you very much

share|improve this question

7 Answers

A Widget is a View. A Layout is a ViewGroup. To create a widget, you extend a View.

share|improve this answer
This is the right answer. – smwikipedia Jun 28 '11 at 6:55
True, for developer perspective. – Kiddo Apr 8 at 17:30

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 View is pretty similar to a .NET Control or a Qt widget.

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 FrameLayout, LinearLayout, and RelativeLayout layouts, and that they can only contain AnalogClock, Button, Chronometer, ImageButton, ImageView, ProgressBar',TextView, andViewFlipper` "widget classes" - "Descendants of these classes are not supported."

This is just a bit restrictive!

share|improve this answer

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.

share|improve this answer

Views are concerned with layouts, placeholders.

Widgets are concerned with data, UI behaviors (ex Sliders). Views contain widgets.

share|improve this answer
1  
I think that's a more succinct and better description than my own answer :) – Mörre Mar 2 '11 at 14:25
@Mörre: Thanks :-) – Vinod R Mar 2 '11 at 16:22

I had your same confusion about it, above all for the two packages android.view and android.widget. I ended up thinking of widgets as "ready to use" views, and views as just elements to build widgets. If I make a custom view that will be directly used in a layout, I would consider that a widget.

share|improve this answer
Interesting thoughts. – smwikipedia Jun 28 '11 at 6:57

Just some quotation from "The Busy Coder's Guide to Android Development", Ch 6:

All widgets, including the ones shown above, extend View, and as such give all widgets an array of useful properties and methods beyond those already described.

share|improve this answer
I think you can take the "view" as "Control" in .NET type hierarchy. See: msdn.microsoft.com/en-us/library/… – smwikipedia Jun 28 '11 at 7:33

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."

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.