Updating javadoc for StackView constructors (4554433)

Change-Id: I084c9535f9be4ae4e3942828d3b624d28eae4b06
This commit is contained in:
Winson Chung
2011-09-06 18:38:50 -07:00
parent 4c64b66e08
commit abc8b50a26

View File

@ -148,14 +148,23 @@ public class StackView extends AdapterViewAnimator {
private int mFramePadding;
private final Rect stackInvalidateRect = new Rect();
/**
* {@inheritDoc}
*/
public StackView(Context context) {
this(context, null);
}
/**
* {@inheritDoc}
*/
public StackView(Context context, AttributeSet attrs) {
this(context, attrs, com.android.internal.R.attr.stackViewStyle);
}
/**
* {@inheritDoc}
*/
public StackView(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
TypedArray a = context.obtainStyledAttributes(attrs,