FeedAd Shutter Colour and Disabling Spinner
You can set banner's background colour and whether to use the loading indicator or not by:
Create an instance of AATKitAdNetworkOptions passing FeedAdOptions.
Pass the instance to the AATKitConfiguration while initialising AATKit.
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