Android实现加载广告图片和倒计时的开屏布局

所属分类: 软件编程 / Android 阅读数: 1705
收藏 0 赞 0 分享

这是一个android开屏布局的实例,可以用于加载广告图片和倒计时的布局。程序中设置的LayoutParams,划分额外空间比例为6分之5,具体权重比例可根据用户自己需求来自定义,异步加载广告图片,相关的Android代码。

具体实现代码如下:

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;
 }
 /**
 * 获取开屏布局
 * @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){
 // 整体布局
 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);
 }
 // 加载广告图片和倒计时的布局,用与
 LinearLayout l_layout = new LinearLayout(context);
 l_layout.setGravity(Gravity.CENTER);
 // 设置LayoutParams,划分额外空间比例为6分之5(具体权重比例可根据自己需求自定义)
 l_layout.setLayoutParams(new LinearLayout.LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT, 1f));
 // 加载图片的布局
 RelativeLayout pop_layout = new RelativeLayout(context);
 TextView timeView = new TextView(context);
 timeView.setText("剩余" + time + "秒");
 timeView.setTextSize(10);
 timeView.setTextColor(Color.BLACK);
 timeView.setPadding(8, 3, 6, 2);
 int num = 12;
 // 对手机进行屏幕判断
 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);
 //异步执行倒计时
 //异步加载广告图片
 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("正在启动,请稍后...");
 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("剩余" + limit_time + "秒");
   }
  });
  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为设备状态栏加标题栏的高度
  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);
    //倒计时布局所需的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());
    // 对手机进行屏幕判断
    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;
 }
 }
}

更多精彩内容其他人还在看

Retrofit2日志拦截器的使用

这篇文章主要介绍了Retrofit2日志拦截器的使用,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
收藏 0 赞 0 分享

Android创建外部lib库及自定义View的图文教程

这篇文章主要给大家介绍了关于Android创建外部lib库及自定义View的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
收藏 0 赞 0 分享

Android分享微信小程序失败的一些事小结

这篇文章主要给大家介绍了关于Android分享微信小程序失败一些事,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
收藏 0 赞 0 分享

Android分享微信小程序技巧之图片优化

这篇文章主要给大家介绍了关于Android分享微信小程序技巧之图片优化的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
收藏 0 赞 0 分享

Android Viewpager实现无限循环轮播图

这篇文章主要为大家详细介绍了Android Viewpager实现无限循环轮播图,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享

Android中的Bitmap序列化失败的解决方法

这篇文章主要介绍了Android中的Bitmap序列化失败的解决方法,本文通过实例代码给大家介绍的非常详细,具有一定的参考借鉴价值,需要的朋友可以参考下
收藏 0 赞 0 分享

Android自定义通用标题栏CustomTitleBar

这篇文章主要为大家详细介绍了Android自定义通用标题栏CustomTitleBar,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享

Android组合控件自定义标题栏

这篇文章主要为大家详细介绍了Android组合控件自定义标题栏,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享

Android自定义复合控件实现通用标题栏

这篇文章主要为大家详细介绍了Android自定义复合控件实现通用标题栏,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享

ExpandableListView实现简单二级列表

这篇文章主要为大家详细介绍了ExpandableListView实现简单二级列表,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享
查看更多