FeedAd Shutter Colour and Disabling Spinner

You can set banner's background colour and whether to use the loading indicator or not by:

AATKitConfiguration conf = new AATKitConfiguration(this);
AATKitAdNetworkOptions networkOptions = new AATKitAdNetworkOptions();
// [...]
FeedAdOptions feedAdOptions = new FeedAdOptions();
feedAdOptions.setDisableSpinner(false);
feedAdOptions.setShutterColor(Color.BLUE);

networkOptions.setFeedAdOptions(feedAdOptions);
conf.setAdNetworkOptions(networkOptions);
// [...]
AATKit.init(conf);

Last updated