Smart Ad For Android


Source link: https://github.com/ShockUtility/SmartAdForAndroid

SmartAd

SmartAd is an easy-to-use library for AdMob and Audience Network advertising frameworks on iOS and Android.

Install

dependencies {

  compile 'kr.docs:smart-ad:0.3.1' 
}
 

Dependencies

dependencies {

  compile 'com.google.android.gms:play-services-ads:11.+'
  compile 'com.facebook.android:audience-network-sdk:4.+' 
}
 

Supported ad formats

Google AdMob

  • AdView
  • InterstitialAd
  • RewardedVideoAd

Facebook Audience Network

  • AdView
  • InterstitialAd
  • RewardedVideoAd

Usage

SmartAdBanner

Add the view to the UI screen, select the 'SmartAdBanner' class and set only 5 properties, and it works without coding.

<kr.docs.smartad.SmartAdBanner
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  app:adv_AdOrder="Random"
  app:adv_BannerSize="Auto"
  app:adv_IsAutoStart="true"
  app:adv_FacebookID="YOUR_PLACEMENT_ID"
  app:adv_GoogleID="YOUR_PLACEMENT_ID" />
SmartAdBanner Google (AdView) Facebook (AdView)
AD_SIZE_AUTO SMART_BANNER BANNER_HEIGHT_50
AD_SIZE_SMALL BANNER BANNER_HEIGHT_50
AD_SIZE_LARGE LARGE_BANNER BANNER_HEIGHT_90
AD_SIZE_RECTANGLE MEDIUM_RECTANGLE RECTANGLE_HEIGHT_250

* Note: If four sizes of ads are supported and the size of the view is smaller than the size of the ads to be displayed, then each framework may not show ads.
* Note: preferably layout_height of the view is set to wrap_content and adv_AdSize is set appropriately, the ad size will be displayed for each framework, and if there is no advertisement, it will not be displayed on the screen.

SmartAdInterstitial

Here is the example code that calls the interstitial.

// Simple SmartAdInterstitial mAd = SmartAdInterstitial.showAd(this, "googleID", "facebookID");
 // Custom show SmartAdInterstitial mAd = SmartAdInterstitial.showAd(this, SmartAd.AD_TYPE_GOOGLE, "googleID", "facebookID", false);
 mAd.showLoadedAd();
 // with Callback SmartAdInterstitial mAd = SmartAdInterstitial.showAdWidthCallback(this, "googleID", "facebookID",

  new SmartAdInterstitial.OnSmartAdInterstitialListener() {

@Override

public void onSmartAdInterstitialDone(int adType) {

 // Success...

}

 @Override

public void onSmartAdInterstitialFail(int adType) {

 // Fail...

}

 @Override

public void onSmartAdInterstitialClose(int adType) {

 // Close...

}

  
}
);
 ... @Override public void onDestroy() {

  if (mAd!=null) mAd.destroy();
  // This prevents ads from being displayed after the screen is closed.
  super.onDestroy();
 
}

Use OnSmartAdInterstitialListener if you want to return the result.

public class MainActivity extends AppCompatActivity implements SmartAdInterstitial.OnSmartAdInterstitialListener {

  @Override
  public void onSmartAdInterstitialDone(int type) {

// Success...
  
}

@Override
  public void onSmartAdInterstitialFail(int type) {

// Fail...
  
}

 @Override
  public void onSmartAdInterstitialClose(int type) {

// Close...
  
}
 
}

The following functions allow you to make ad calls.

static public SmartAdInterstitial showAdWidthCallback(Context context, int adOrder, String googleID, String facebookID, boolean isAutoStart, final OnSmartAdInterstitialListener callback) static public SmartAdInterstitial showAdWidthCallback(Context context, String googleID, String facebookID, final OnSmartAdInterstitialListener callback) static public SmartAdInterstitial showAd(Context context, int adOrder, String googleID, String facebookID, boolean isAutoStart) static public SmartAdInterstitial showAd(Context context, String googleID, String facebookID)  public SmartAdInterstitial(Context context, @SmartAd.SmartAdOrder int adOrder, String googleID, String facebookID, boolean isAutoStart, final OnSmartAdInterstitialListener callback) public void showLoadedAd() public void destroy()

* Note: If you do not handle destroy (), the problem is that your ads will still be called after the calling activity has been closed.

SmartAdAward

Here is the example code that calls the award ad.

// Simple SmartAdAward.showAd(this, SmartAd.AD_TYPE_FACEBOOK, "googleID", "facebookID");
 // with Callback SmartAdAward.showAdWidthCallback(this, SmartAd.AD_TYPE_RANDOM, "googleID", "facebookID",

 new SmartAdAward.OnSmartAdAwardListener() {

  @Override

  public void onSmartAdAwardDone(int adType, boolean isAwardShown, boolean isAwardClicked) {

// Awarded...

  
}

  @Override

 public void onSmartAdAwardFail(int adType) {

  // Fail...

 
}

}
);

Use OnSmartAdAwardListener if you want to return the result.

public class MainActivity extends AppCompatActivity implements SmartAdInterstitial.OnSmartAdAwardListener {

  @Override
  public void onSmartAdAwardDone(int adType, boolean isAward) {

// Awarded...
  
}

@Override
  public void onSmartAdAwardFail(int adType) {

// Fail...
  
}
 
}

The following functions allow you to make ad calls.

static public SmartAdAward showAdWidthCallback(Context context, int adOrder, String googleID, String facebookID, final OnSmartAdAwardListener callback) static public SmartAdAward showAdWidthCallback(Context context, String googleID, String facebookID, final OnSmartAdAwardListener callback) static public SmartAdAward showAd(Context context, int adOrder, String googleID, String facebookID) static public SmartAdAward showAd(Context context, String googleID, String facebookID)  public SmartAdAward(Context context, @SmartAd.SmartAdOrder int adOrder, String googleID, String facebookID, final OnSmartAdAwardListener callback) public SmartAdAward(Context context, String googleID, String facebookID, OnSmartAdAwardListener callback) public void showAd()

SmartAdAlert

Alert with OK button only.

SmartAdAlert.alert(this,

  SmartAd.AD_TYPE_RANDOM,

  "googleID",

  "facebookID",

  "Alert Dialog",

  new SmartAdAlert.SmartAdAlertListener() {

@Override

public void result(int buttonType) {

 switch (buttonType) {

  case SmartAdAlert.BUTTON_OK:

Toast.makeText(MainActivity.this, "SmartAdAlert Alert : OK", Toast.LENGTH_LONG).show();

break;

  case SmartAdAlert.BUTTON_BACK:

Toast.makeText(MainActivity.this, "SmartAdAlert Alert : Back", Toast.LENGTH_LONG).show();

break;

 
}

}

  
}
);

Alert with OK & Cancel.

SmartAdAlert.confirm(this,

 SmartAd.AD_TYPE_GOOGLE,

 "googleID",

 "facebookID",

 "Confirm Dialog",

 new SmartAdAlert.SmartAdAlertListener() {

  @Override

  public void result(int buttonType) {

switch (buttonType) {

 case SmartAdAlert.BUTTON_OK:

  Toast.makeText(MainActivity.this, "SmartAdAlert Confirm : OK", Toast.LENGTH_LONG).show();

  break;

 case SmartAdAlert.BUTTON_CANCEL:

  Toast.makeText(MainActivity.this, "SmartAdAlert Confirm : Cancel", Toast.LENGTH_LONG).show();

  break;

 case SmartAdAlert.BUTTON_BACK:

  Toast.makeText(MainActivity.this, "SmartAdAlert Confirm : Back", Toast.LENGTH_LONG).show();

  break;

}

  
}

 
}
);

Customizing Alert

SmartAdAlert.select(this,

SmartAd.AD_TYPE_FACEBOOK,

"googleID",

"facebookID",

"Select Dialog",

"Yes",

"No",

new SmartAdAlert.SmartAdAlertListener() {

 @Override

 public void result(int buttonType) {

  switch (buttonType) {

case SmartAdAlert.BUTTON_OK:

 Toast.makeText(MainActivity.this, "SmartAdAlert Select : OK", Toast.LENGTH_LONG).show();

 break;

case SmartAdAlert.BUTTON_CANCEL:

 Toast.makeText(MainActivity.this, "SmartAdAlert Select : Cancel", Toast.LENGTH_LONG).show();

 break;

case SmartAdAlert.BUTTON_BACK:

 Toast.makeText(MainActivity.this, "SmartAdAlert Select : Back", Toast.LENGTH_LONG).show();

 break;

  
}

 
}

}
);

Add test device.

SmartAd.addTestDevice(SmartAd.AD_TYPE_GOOGLE,
com.google.android.gms.ads.AdRequest.DEVICE_ID_EMULATOR);
 SmartAd.addTestDevice(SmartAd.AD_TYPE_GOOGLE,
"XXXXXE00ED1B543E38E01E0741305BC0");
 SmartAd.addTestDevice(SmartAd.AD_TYPE_FACEBOOK, "XXXXXf179a62345bb89544cd03ed16ba");
 SmartAd.addTestDevice(SmartAd.AD_TYPE_FACEBOOK, "XXXXX814b5bde5d5fb24a9c3e003ea06");

Register the ad activation function

You can register and use this function to stop ads in-app billing or under certain circumstances.

SmartAd.IsShowAdFunc = new SmartAd.IsShowAdListener() {

  @Override
  public Class[] getAvailClass() {

// List the classes to be applied.

// Here's an example that applies to all ad classes except SmartAdAward.

return new Class[] {
SmartAdBanner.class, SmartAdAlert.class, SmartAdInterstitial.class
}
;
  
}

@Override
  public boolean isShowAd() {

// You can customize the content to suit your situation.

// The following is just an example.

SharedPreferences mPrefs = PreferenceManager.getDefaultSharedPreferences(MainActivity.this);

return mPrefs.getBoolean("isShowAd", true);

  
}
 
}
;

Use Alert Theme

<!-- SmartAdAlert Theme --> <color name="ads_Alert_Background">#c8c8c8</color> <color name="ads_Alert_Title_Background">#615aa0</color> <color name="ads_Alert_Title_Text">#ffffff</color> <color name="ads_Alert_Button_Background">#FFFFFF</color> <color name="ads_Alert_Button_Text">#615aa0</color>

License

The MIT License  Copyright (c) 2009-2017 ShockUtility.  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 

Resources

This framework is designed to solve the traditional MVP class and interface too much, and Presenter and View communicate too complicated through the interface, reuse Presenter too much cost.

Marvelous sliding square loader view inspired this.

The lib provides an easy way to store your settings in SharedPreferences.

Using Html to render Android native view.

Other than Webview, HtmlNative directly parses HTML and CSS into Android native views, which will:

  • Reach better user-expirence by native widgets
  • Make UI dynamic, no need to release new version of application
  • Easy to write html and css
  • Define your own html tag
  • Support script of Lua, by which you can control the logic inside of this view.

This library is a package of functions that let you manipulate objects and or java date string. It combines the most common functions used when managing dates under android, such as converting a mysql / sqlLite date to a Date object and vis-versa, etc.

Custom view written in Kotlin to Display a translucent frame with corners as known from cameras. You can set the frame's alpha, the frame size, the length of the lines in the corner, their color and the width of them.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes