Animation <Set> property android:repeatMode will not accept an int

juliohedgehog

New Member
According to the docs I would put either a 1 or 2 as the value, however, upon attempting to launch my application, I get the error:\[code\]Error: Integer types not allowed (at 'repeatMode' with value '1').\[/code\]and my Animation XML is:\[code\]<?xml version="1.0" encoding="utf-8"?><set xmlns:android="http://schemas.android.com/apk/res/android" android:repeatCount="0" android:repeatMode="1" > <alpha android:duration="1000" android:fromAlpha="0.0" android:toAlpha="1.0" > </alpha> <alpha android:duration="500" android:fromAlpha="1.0" android:toAlpha="0.0" > </alpha></set>\[/code\]What exactly am I missing?
 
Back
Top