Wygląda na to, że RobotoAttributeSet
utworzony i przekazany do niestandardowego widoku nigdy nie został odczytany lub skonstruowany niepoprawnie.RoboAttributeSet Robolectric nigdy nie jest odczytywany
Oto moja próba:
ArrayList<Attribute> attributes = new ArrayList<>();
attributes.add(
new Attribute("com.package.name:attr/CustomButton_inputType",
String.valueOf(2), "com.package.name")); // no matter what value I use (2)
AttributeSet attrs =
new RoboAttributeSet(attributes, Robolectric.application.getResources(), CustomButton.class);
CustomButton button = new CustomButton(Robolectric.application, attrs);
Oto mój attr.xml
:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="CustomButton">
<attr name="inputType" format="enum">
<enum name="text" value="0"/>
<enum name="textEmailAddress" value="1"/>
<enum name="password" value="2"/>
</attr>
</declare-styleable>
</resources>
Część CustomButton:
private void applyAttributes(Context context, AttributeSet attrs) {
TypedArray typedArray = context.getTheme()
.obtainStyledAttributes(attrs, R.styleable.CustomButton, 0, 0);
try {
int typeValue = // is always 0
typedArray.getInt(R.styleable.CustomButton_inputType, 0);
switch (typeValue) {
case 0:
// do something
break;
case 1:
// do something
break;
case 2:
// do something
break;
default:
// just do nothing
break;
}
} finally {
typedArray.recycle();
}
}
Więc bez względu na to, jaką wartość ustawić podczas przygotowywania atrybuty (w przykładzie jest to 2
), zawsze otrzymuję 0
dla typeValue
.
Czy robię coś nie tak? Wielkie dzięki!
Próbowałem podobny w mojej konfiguracji, a także potwierdzić, że styledArray jest pusty. Jednak widzę, że nie jest pusty, gdy próbuję nadmuchać widok z zasobu Activity i xml. Czy rozważyłbyś ten sposób testowania? –
Stworzyłem bilet https://github.com/robolectric/robolectric/issues/1478 –