阿里云服务器免费领卷啦。

捡代码论坛-最全的游戏源码下载技术网站!

 找回密码
 立 即 注 册

QQ登录

只需一步,快速开始

搜索
关于源码区的附件失效或欺骗帖, 处理办法
查看: 3212|回复: 0

广告倒计时欢迎界面的实现,倒计时欢迎界面

[复制链接]

4213

主题

210

回帖

12万

积分

管理员

管理员

Rank: 9Rank: 9Rank: 9

积分
127206
QQ
发表于 2016-3-15 19:48:50 | 显示全部楼层 |阅读模式
广告倒计时欢迎界面的实现,倒计时欢迎界面
今天更新了一个App,打开这个App后弹出的页面是一个广告倒计时的页面,倒计时完毕后进入主界面。于是我闲着没事儿简易实现了一下这个功能,如图:

实现这个效果也很容易,在相应布局问下中添加TextView控件,控件的值就是倒计时的数字,这里我给倒计时添加了一个动画效果,项目的目录结构如下:
AndroidManifest.xml
这里我配置了WelcomeActivity界面作为广告界面,配置它为应用的第一个activity,并且隐藏其标题。
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3.     package="com.example.timewelcome"
  4.     android:versionCode="1"
  5.     android:versionName="1.0" >

  6.     <uses-sdk
  7.         android:minSdkVersion="8"
  8.         android:targetSdkVersion="19" />

  9.     <application
  10.         android:allowBackup="true"
  11.         android:icon="@drawable/ic_launcher"
  12.         android:label="@string/app_name"
  13.         android:theme="@style/AppTheme" >
  14.         <activity
  15.             android:name=".MainActivity"
  16.             android:label="@string/app_name" >
  17.         </activity>
  18.         <activity
  19.             android:name=".WelcomeActivity"
  20.             android:label="@string/title_activity_welcome"
  21.             android:theme="@android:style/Theme.NoTitleBar" >
  22.             <intent-filter>
  23.                 <action android:name="android.intent.action.MAIN" />

  24.                 <category android:name="android.intent.category.LAUNCHER" />
  25.             </intent-filter>
  26.         </activity>
  27.     </application>
  28. </manifest>
复制代码
WelcomeActivity.java
  1. package com.example.timewelcome;

  2. import android.app.Activity;
  3. import android.content.Intent;
  4. import android.os.Bundle;
  5. import android.os.Handler;
  6. import android.view.Window;
  7. import android.view.animation.Animation;
  8. import android.view.animation.AnimationUtils;
  9. import android.widget.TextView;

  10. public class WelcomeActivity extends Activity {

  11.     // 声明控件对象
  12.     private TextView textView;
  13.     private int count = 5;
  14.     private Animation animation;

  15.     @Override
  16.     protected void onCreate(Bundle savedInstanceState) {
  17.         super.onCreate(savedInstanceState);
  18.         // 去除标题
  19.         requestWindowFeature(Window.FEATURE_NO_TITLE);
  20.         setContentView(R.layout.activity_welcome);
  21.         // 初始化控件对象
  22.         textView = (TextView) findViewById(R.id.textView);
  23.         animation = AnimationUtils.loadAnimation(this, R.anim.animation_text);
  24.         //textView.startAnimation(animation);
  25.         handler.sendEmptyMessageDelayed(0, 1000);

  26.     }

  27.     private int getCount() {
  28.         count--;
  29.         if (count == 0) {
  30.             Intent intent = new Intent(this, MainActivity.class);
  31.             startActivity(intent);
  32.             finish();
  33.         }
  34.         return count;
  35.     }

  36.     private Handler handler = new Handler() {
  37.         public void handleMessage(android.os.Message msg) {
  38.             if (msg.what == 0) {
  39.                 textView.setText(getCount()+"");
  40.                 handler.sendEmptyMessageDelayed(0, 1000);
  41.                 animation.reset();
  42.                 textView.startAnimation(animation);
  43.             }

  44.         };

  45.     };

  46. }
复制代码
activity_welcome.xml
  1. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2.     xmlns:tools="http://schemas.android.com/tools"
  3.     android:layout_width="match_parent"
  4.     android:layout_height="match_parent"
  5.     android:background="@drawable/image"
  6.     tools:context="${relativePackage}.${activityClass}" >

  7.     <LinearLayout
  8.         android:layout_width="wrap_content"
  9.         android:layout_height="wrap_content"
  10.         android:layout_gravity="right"
  11.         android:orientation="horizontal" >

  12.         <TextView
  13.             android:layout_width="wrap_content"
  14.             android:layout_height="wrap_content"
  15.             android:layout_gravity="right"
  16.             android:text="广告倒计时:"
  17.             android:textColor="#ffffff"
  18.             android:textSize="20sp" />

  19.         <TextView
  20.             android:id="@+id/textView"
  21.             android:layout_width="wrap_content"
  22.             android:layout_height="wrap_content"
  23.             android:layout_gravity="right"
  24.             android:text="5"
  25.             android:textColor="#ffffff"
  26.             android:textSize="20sp" />

  27.         <TextView
  28.             android:layout_width="wrap_content"
  29.             android:layout_height="wrap_content"
  30.             android:layout_gravity="right"
  31.             android:text="秒"
  32.             android:textColor="#ffffff"
  33.             android:textSize="20sp" />
  34.     </LinearLayout>

  35. </FrameLayout>
复制代码

动画的xml文件animation_text.xml存放在了res/anim目录下,实现透明度和缩放的动画。
animation_text.xml
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <set xmlns:android="http://schemas.android.com/apk/res/android" >

  3.     <alpha
  4.         android:duration="1000"
  5.         android:fromAlpha="0.0"
  6.         android:toAlpha="1.0" />

  7.     <scale
  8.         android:duration="800"
  9.         android:fromXScale="1.5"
  10.         android:fromYScale="1.5"
  11.         android:pivotX="50%"
  12.         android:pivotY="50%"
  13.         android:toXScale="1.0"
  14.         android:toYScale="1.0" />

  15. </set>
复制代码
实际项目中,本案例及我之前写的两篇博客: ViewPager实现应用的欢迎界面 ,Animation Frame动画实现应用的欢迎界面 都是有逻辑问题的。那么如何正确的实现呢?下面提供我的个人思路:
一般应用的第一次开启都会先出现一个欢迎页面,然后出现导航页面或者广告页面等,然后再进入主页面。所以我们需要判断这个应用是否是第一安装并开启的,这里我们可以使用sharedpreference来保存应用是否开启这个标识符,如果是第一次开启,就从欢迎页面跳转到导航页,然后导航页再跳转到主页面,否则直接从欢迎页跳转到主页面。







捡代码论坛-最全的游戏源码下载技术网站! - 论坛版权郑重声明:
1、本主题所有言论和图片纯属会员个人意见,与本论坛立场无关
2、本站所有主题由该帖子作者发表,该帖子作者与捡代码论坛-最全的游戏源码下载技术网站!享有帖子相关版权
3、捡代码论坛版权,详细了解请点击。
4、本站所有内容均由互联网收集整理、网友上传,并且以计算机技术研究交流为目的,仅供大家参考、学习,不存在任何商业目的与商业用途。
5、若您需要商业运营或用于其他商业活动,请您购买正版授权并合法使用。 我们不承担任何技术及版权问题,且不对任何资源负法律责任。
6、如无法链接失效或侵犯版权,请给我们来信:jiandaima@foxmail.com

回复

使用道具 举报

*滑块验证:
您需要登录后才可以回帖 登录 | 立 即 注 册

本版积分规则

技术支持
在线咨询
QQ咨询
3351529868

QQ|手机版|小黑屋|捡代码论坛-专业源码分享下载 ( 陕ICP备15015195号-1|网站地图

GMT+8, 2025-1-22 23:43

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表