FeedAd
You can set banner's background colour and whether to use the loading indicator or not by:
Create an instance of AATKitAdNetworkOptions passing FeedAdOptions.
Provide this instance to the AATKitConfiguration while initialising AATKit.
AATKit will automatically forward the specified options to the SuperAwesome SDK during ad loading.
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