Package org.robolectric.android
Interface AttributeSetBuilder
- All Superinterfaces:
Robolectric.AttributeSetBuilder
- All Known Implementing Classes:
AttributeSetBuilderImpl
public interface AttributeSetBuilder extends Robolectric.AttributeSetBuilder
Builder of
AttributeSet
s.-
Method Summary
Modifier and Type Method Description AttributeSetBuilder
addAttribute(int resId, String value)
Set an attribute to the given value.AttributeSet
build()
Build anAttributeSet
with the antecedent attributes.AttributeSetBuilder
setClassAttribute(String value)
Set the class attribute to the given value.AttributeSetBuilder
setIdAttribute(String value)
Set the id attribute to the given value.AttributeSetBuilder
setStyleAttribute(String value)
Set the style attribute to the given value.
-
Method Details
-
addAttribute
Set an attribute to the given value. The value will be interpreted according to the attribute's format.- Specified by:
addAttribute
in interfaceRobolectric.AttributeSetBuilder
- Parameters:
resId
- The attribute resource id to set.value
- The value to set.- Returns:
- This
AttributeSetBuilder
.
-
setStyleAttribute
Set the style attribute to the given value. The value will be interpreted as a resource reference.- Specified by:
setStyleAttribute
in interfaceRobolectric.AttributeSetBuilder
- Parameters:
value
- The value for the specified attribute in thisAttributeSet
.- Returns:
- This
AttributeSetBuilder
.
-
setClassAttribute
Set the class attribute to the given value. The value will be interpreted as a class name.- Parameters:
value
- The value for thisAttributeSet
'sclass
attribute.- Returns:
- This
AttributeSetBuilder
.
-
setIdAttribute
Set the id attribute to the given value. The value will be interpreted as an element id name.- Parameters:
value
- The value for thisAttributeSet
'sid
attribute.- Returns:
- This
AttributeSetBuilder
.
-
build
AttributeSet build()Build anAttributeSet
with the antecedent attributes.- Specified by:
build
in interfaceRobolectric.AttributeSetBuilder
- Returns:
- A new
AttributeSet
.
-