Android implements the open screen layout of loading advertising images and countdown

  • 2020-06-03 08:17:06
  • OfStack

This is an example of an android open screen layout that can be used to load AD images and a countdown layout. LayoutParams is set in the program, and the proportion of extra space is divided into 5 out of 6. The specific weight proportion can be defined according to the user's own requirements, and the AD image and relevant Android code can be asynchronously loaded.

The specific implementation code is as follows:


package cn.waps.extend;
import android.app.Activity;
import android.content.Context;
import android.content.res.Configuration;
import android.graphics.Color;
import android.graphics.drawable.ShapeDrawable;
import android.graphics.drawable.shapes.RoundRectShape;
import android.os.AsyncTask;
import android.os.Handler;
import android.os.Looper;
import android.view.Gravity;
import android.view.View;
import android.view.ViewGroup.LayoutParams;
import android.widget.LinearLayout;
import android.widget.RelativeLayout;
import android.widget.TextView;
import com.qcn.wzlz.AppConnect;
import com.qcn.wzlz.SDKUtils;
public class LoadingPopAd {
 private final static Handler mHandler = new Handler();
 private static LoadingPopAd loadingAppPopAd;
 public static LoadingPopAd getInstance(){
 if(loadingAppPopAd == null){
  loadingAppPopAd = new LoadingPopAd();
 }
 if (Looper.myLooper() == null) {
  Looper.prepare();
 }
 return loadingAppPopAd;
 }
 /**
 *  Gets the open screen layout 
 * @param context
 * @param time
 * @return
 */
 public View getContentView(Context context, int time){
 return getLoadingLayout(context, time);
 }
 private LinearLayout getLoadingLayout(final Context context, final int time){
 //  The overall layout 
 LinearLayout layout = new LinearLayout(context);
 layout.setOrientation(LinearLayout.VERTICAL);
 layout.setGravity(Gravity.CENTER);
 int bg_id = context.getResources().getIdentifier("loading_bg", "drawable", context.getPackageName());
 if(bg_id != 0){
  layout.setBackgroundResource(bg_id);
 }
 //  Load AD images and countdown layout , With the 
 LinearLayout l_layout = new LinearLayout(context);
 l_layout.setGravity(Gravity.CENTER);
 //  Set up the LayoutParams, The proportion of dividing extra space is 6 m 5( Specific weight ratio can be customized according to their own needs )
 l_layout.setLayoutParams(new LinearLayout.LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT, 1f));
 //  Load the layout of the image 
 RelativeLayout pop_layout = new RelativeLayout(context);
 TextView timeView = new TextView(context);
 timeView.setText(" The remaining " + time + " seconds ");
 timeView.setTextSize(10);
 timeView.setTextColor(Color.BLACK);
 timeView.setPadding(8, 3, 6, 2);
 int num = 12;
 //  Screen judgment on the phone 
 int displaySize = SDKUtils.getDisplaySize(context);
 if(displaySize == 320){
  num = 8;
 }else if(displaySize == 240){
  num = 6;
 }else if(displaySize == 720){
  num = 16;
 }else if(displaySize == 1080){
  num = 20;
 }
 float[] outerRadii = new float[] { 0, 0, num, num, 0, 0, num, num};
 ShapeDrawable timeView_shapeDrawable = new ShapeDrawable();
 timeView_shapeDrawable.setShape(new RoundRectShape(outerRadii, null, null));
 timeView_shapeDrawable.getPaint().setColor(Color.argb(255, 255, 255, 255));
 timeView.setBackgroundDrawable(timeView_shapeDrawable);
 // Asynchronous execution countdown 
 // Load AD images asynchronously 
 new ShowPopAdTask(context, pop_layout, timeView).execute();
 new TimeCountDownTask(timeView, time).execute();
 TextView textView = new TextView(context);
 textView.setLayoutParams(new LinearLayout.LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT, 5f));
 textView.setText(" Is starting , Please later ...");
 textView.setGravity(Gravity.CENTER);
 textView.setTextColor(Color.WHITE);
 l_layout.addView(pop_layout);
 layout.addView(l_layout);
 layout.addView(textView);
 return layout;
 }
 private class TimeCountDownTask extends AsyncTask<Void, Void, Boolean>{
 TextView timeView;
 int limit_time = 0;
 TimeCountDownTask(TextView timeView, int time){
 this.timeView = timeView;
 this.limit_time = time;
 }
 @Override
 protected Boolean doInBackground(Void... params) {
  while(limit_time > 0){
  mHandler.post(new Runnable(){
   @Override
   public void run() {
   timeView.setText(" The remaining " + limit_time + " seconds ");
   }
  });
  try {
   Thread.sleep(1000);
  } catch (Exception e) {
   e.printStackTrace();
  }
  limit_time--;
  }
  return null;
 }
 }
 private class ShowPopAdTask extends AsyncTask<Void, Void, Boolean>{
 Context context;
 RelativeLayout pop_layout;
 LinearLayout popAdView;
 TextView timeView;
 int height_full = 0;
 int height = 0;
 ShowPopAdTask(Context context, RelativeLayout pop_layout, TextView timeView){
  this.context = context;
  this.pop_layout = pop_layout;
  this.timeView = timeView;
 }
 @Override
 protected Boolean doInBackground(Void... params) {
  try {
  height_full = ((Activity)context).getWindowManager().getDefaultDisplay().getHeight();
  int height_tmp = height_full - 75;//75 Add the height of the title bar to the device status bar 
  height = height_tmp * 5/6;
  while(true){
   if(((Activity)context).getResources().getConfiguration().orientation == Configuration.ORIENTATION_LANDSCAPE
   && height_full <= 480){
   popAdView = AppConnect.getInstance(context).getPopAdView(context, height, height);
   }else{
   popAdView = AppConnect.getInstance(context).getPopAdView(context);
   }
   if(popAdView != null){
   mHandler.post(new Runnable(){
    @Override
    public void run() {
    pop_layout.addView(popAdView);
    popAdView.setId(1);
    // Countdown layout required LayoutParams
    RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
    params.addRule(RelativeLayout.ALIGN_TOP, popAdView.getId());
    params.addRule(RelativeLayout.ALIGN_RIGHT, popAdView.getId());
    //  Screen judgment on the phone 
    int displaySize = SDKUtils.getDisplaySize(context);
    if(displaySize == 320){
     params.topMargin=1;
     params.rightMargin=1;
    }else if(displaySize == 240){
     params.topMargin=1;
     params.rightMargin=1;
    }else if(displaySize == 720){
     params.topMargin=3;
     params.rightMargin=3;
    }else if(displaySize == 1080){
     params.topMargin=4;
     params.rightMargin=4;
    }else{
     params.topMargin=2;
     params.rightMargin=2;
    }
    pop_layout.addView(timeView, params);
    }
   });
   break;
   }
   try {
   Thread.sleep(500);
   } catch (InterruptedException e) {
   e.printStackTrace();
   }
  }
  } catch (Exception e) {
  e.printStackTrace();
  }
  return null;
 }
 }
}


Related articles: