Animation.BackgroundColor Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the background color behind the animation. -or- Set background behind animation.
public virtual int BackgroundColor { [Android.Runtime.Register("getBackgroundColor", "()I", "GetGetBackgroundColorHandler")] get; [Android.Runtime.Register("setBackgroundColor", "(I)V", "GetSetBackgroundColor_IHandler")] set; }
[<get: Android.Runtime.Register("getBackgroundColor", "()I", "GetGetBackgroundColorHandler")>]
[<set: Android.Runtime.Register("setBackgroundColor", "(I)V", "GetSetBackgroundColor_IHandler")>]
member this.BackgroundColor : int with get, set
Property Value
The background color behind the animation. A value of 0 means no background; otherwise, the color must currently be black with any desired alpha level.
- Attributes
Remarks
Property getter documentation:
Returns the background color behind the animation.
This member is deprecated. None of window animations are running with background color.
Java documentation for android.view.animation.Animation.getBackgroundColor().
Property setter documentation:
Set background behind animation.
This member is deprecated. None of window animations are running with background color.
Java documentation for android.view.animation.Animation.setBackgroundColor(int).
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.