Merge "Updating javadoc for StackView constructors (4554433)"
This commit is contained in:
@@ -148,14 +148,23 @@ public class StackView extends AdapterViewAnimator {
|
|||||||
private int mFramePadding;
|
private int mFramePadding;
|
||||||
private final Rect stackInvalidateRect = new Rect();
|
private final Rect stackInvalidateRect = new Rect();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
public StackView(Context context) {
|
public StackView(Context context) {
|
||||||
this(context, null);
|
this(context, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
public StackView(Context context, AttributeSet attrs) {
|
public StackView(Context context, AttributeSet attrs) {
|
||||||
this(context, attrs, com.android.internal.R.attr.stackViewStyle);
|
this(context, attrs, com.android.internal.R.attr.stackViewStyle);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritDoc}
|
||||||
|
*/
|
||||||
public StackView(Context context, AttributeSet attrs, int defStyleAttr) {
|
public StackView(Context context, AttributeSet attrs, int defStyleAttr) {
|
||||||
super(context, attrs, defStyleAttr);
|
super(context, attrs, defStyleAttr);
|
||||||
TypedArray a = context.obtainStyledAttributes(attrs,
|
TypedArray a = context.obtainStyledAttributes(attrs,
|
||||||
|
|||||||
Reference in New Issue
Block a user