Android抢红包助手开发全攻略_Android

背景:新年之际,微信微博支付宝红包是到处飞,但是,自己的手速总是比别人慢一点最后导致红包没抢到,红包助手就应运而生。
需求:收到红包的时候进行提醒,然后跳转到红包的界面方便用户。
思路:获取“读取通知信息”权限,然后开启服务监控系统通知,判断如果是微信红包就进行提醒(声音),然后跳转到红包所在的地方。 
界面:

界面分为两部分,一部分是可以对App进行操作的,下面是一个可以滑动的界面,提示用户如何是软件正常工作,布局代码如下:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
 android:id="@+id/root"
 xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:layout_marginLeft="10dp"
 android:layout_marginRight="10dp"
 android:layout_marginTop="5dp"
 android:orientation="vertical"
 tools:context="com.fndroid.administrator.justforyou.MainActivity">

 <LinearLayout
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:orientation="horizontal">

  <TextView
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:layout_weight="3"
   android:text="打开提示音"/>

  <CheckBox
   android:id="@+id/isMusic"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"/>

 </LinearLayout>

 <LinearLayout
  android:layout_width="match_parent"
  android:layout_height="wrap_content">

  <TextView
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:layout_gravity="center"
   android:text="音量调节"/>

  <SeekBar
   android:id="@+id/seekbar"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:layout_gravity="center"
   android:layout_weight="1"/>

 </LinearLayout>

 <LinearLayout
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:orientation="horizontal">

  <TextView
   android:layout_width="0dp"
   android:layout_height="wrap_content"
   android:layout_weight="3"
   android:text="有红包亮屏并解锁"/>

  <CheckBox
   android:id="@+id/isUnlock"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"/>
 </LinearLayout>

 <Button
  android:id="@+id/setPermision"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_gravity="center"
  android:text="设置通知权限"/>

 <ScrollView
  android:layout_width="match_parent"
  android:layout_height="match_parent">

  <LinearLayout
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:orientation="vertical">

   <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="10dp"
    android:text="声明:"/>

   <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="本软件为个人开发所得,只能对微信红包进行提醒。请合理使用本软件,使用不当造成的各种行为均与本人无关。软件使用过程不联网,不存在任何盗窃用户信息行为,请放心使用。"/>

   <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="10dp"
    android:text="使用方法:"/>

   <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="①如果未赋予软件读取通知权限,点击按钮“设置通知权限"/>

   <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="②在本软件右侧勾选上,并确认提示信息"/>

   <ImageView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:scaleType="fitCenter"
    android:src="@drawable/inf"/>

   <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="③关闭微信群的消息免打扰(取消图中的绿色按钮)"/>

   <ImageView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/inf2"/>
  </LinearLayout>
 </ScrollView>
</LinearLayout> 

app打开的时候开启一个服务,编写一个NotificationListenerService的子类并实现onNotificationPosted和onNotificationRemoved方法,前面的方法会在收到通知的时候调用 

// 编写一个NotificationListenerService的子类并实现onNotificationPosted和onNotificationRemoved方法
// 这两个方法在从SDK版本21的时候开始变成了非抽象,不重写则不能兼容21以下设备
public class NotificationService extends NotificationListenerService {

 private KeyguardManager.KeyguardLock kl;

 @Override
 public void onNotificationPosted(StatusBarNotification sbn) {
  // 主界面设置的信息保存在SharedPreferences中,在这里进行获取
  SharedPreferences sharedPreferences = getSharedPreferences("userdata", MODE_PRIVATE);

  // 判断消息是否为微信红包
  if (sbn.getNotification().tickerText.toString().contains("[微信红包]") && sbn.getPackageName
    ().equals("com.tencent.mm")) {

   // 读取设置信息,判断是否该点亮屏幕并解开锁屏,解锁的原理是把锁屏关闭掉
   if (sharedPreferences.getBoolean("isUnlock",true)) {
    KeyguardManager km = (KeyguardManager) getSystemService(getApplicationContext()
      .KEYGUARD_SERVICE);
    kl = km.newKeyguardLock("unlock");

    // 把系统锁屏暂时关闭
    kl.disableKeyguard();
    PowerManager pm = (PowerManager) getSystemService(getApplicationContext()
      .POWER_SERVICE);
    PowerManager.WakeLock wl = pm.newWakeLock(PowerManager.ACQUIRE_CAUSES_WAKEUP |
      PowerManager.SCREEN_DIM_WAKE_LOCK, "bright");
    wl.acquire();
    wl.release();
   }

   try {
    // 打开notification所对应的pendingintent
    sbn.getNotification().contentIntent.send();

   } catch (PendingIntent.CanceledException e) {
    e.printStackTrace();
   }

   // 判断是否该播放提示音
   if (sharedPreferences.getBoolean("isMusic",true)){
    MediaPlayer mediaPlayer = new MediaPlayer().create(this, R.raw.heihei);
    mediaPlayer.start();
   }

   // 这里监听一下系统广播,判断如果屏幕熄灭就把系统锁屏还原
   IntentFilter intentFilter = new IntentFilter();
   intentFilter.addAction("android.intent.action.SCREEN_OFF");
   ScreenOffReceiver screenOffReceiver = new ScreenOffReceiver();
   registerReceiver(screenOffReceiver, intentFilter);

  }

 }

 class ScreenOffReceiver extends BroadcastReceiver {
  @Override
  public void onReceive(Context context, Intent intent) {
   if (kl != null) {
    // 还原锁屏
    kl.reenableKeyguard();
   }
  }
 }

 @Override
 public void onNotificationRemoved(StatusBarNotification sbn) {
  super.onNotificationRemoved(sbn);
 }
} 

主的activity,注释在代码中了,就不详细说了 

public class MainActivity extends AppCompatActivity implements CompoundButton
  .OnCheckedChangeListener, View.OnClickListener,SeekBar.OnSeekBarChangeListener {

 private LinearLayout root;
 private CheckBox isMusic;
 private CheckBox isUnlock;
 private SharedPreferences.Editor editor;
 private SharedPreferences sharedPreferences;
 private Button setPermision;
 private SeekBar seekBar;
 private AudioManager audioManager;

 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);

  // 获取控件实例
  root = (LinearLayout) findViewById(R.id.root);
  isMusic = (CheckBox) findViewById(R.id.isMusic);
  isUnlock = (CheckBox) findViewById(R.id.isUnlock);
  setPermision = (Button) findViewById(R.id.setPermision);
  seekBar = (SeekBar) findViewById(R.id.seekbar);

  // 注册监听
  isMusic.setOnCheckedChangeListener(this);
  isUnlock.setOnCheckedChangeListener(this);
  setPermision.setOnClickListener(this);
  seekBar.setOnSeekBarChangeListener(this);

  // 读取设置信息
  sharedPreferences = getSharedPreferences("userdata", MODE_PRIVATE);
  editor = sharedPreferences.edit();
  boolean music = sharedPreferences.getBoolean("isMusic", true);
  boolean unlock = sharedPreferences.getBoolean("isUnlock", true);
  isMusic.setChecked(music);
  isUnlock.setChecked(unlock);

  // 获得Audiomanager,控制系统音量
  audioManager = (AudioManager) getSystemService(this.AUDIO_SERVICE);
  seekBar.setMax(audioManager.getStreamMaxVolume(AudioManager.STREAM_MUSIC));
  seekBar.setProgress(audioManager.getStreamVolume(AudioManager.STREAM_MUSIC));

  // 监听系统媒体音量改变,并改变界面上的Seekbar的进度
  IntentFilter intentFilter = new IntentFilter();
  intentFilter.addAction("android.media.VOLUME_CHANGED_ACTION");
  VolumReceiver receiver = new VolumReceiver();
  registerReceiver(receiver,intentFilter);

  // 开启服务
  Intent intent = new Intent(MainActivity.this, NotificationService.class);
  startService(intent);
 }

 @Override
 public boolean onKeyDown(int keyCode, KeyEvent event) {
  // 判断返回键点击,提示用户是否确认退出
  if (keyCode == KeyEvent.KEYCODE_BACK && event.getRepeatCount() == 0) {
   Snackbar snackbar = Snackbar.make(root, "退出软件", Snackbar.LENGTH_LONG)
     .setAction("确认", new View.OnClickListener() {
      @Override
      public void onClick(View v) {
       MainActivity.this.finish();
      }
     });
   snackbar.show();
   return true;
  }
  return super.onKeyDown(keyCode, event);
 }

 @Override
 public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
  // checkbox的点击监听
  switch (buttonView.getId()) {
   case R.id.isMusic:
    editor.putBoolean("isMusic", isChecked);
    editor.commit();
    break;
   case R.id.isUnlock:
    editor.putBoolean("isUnlock", isChecked);
    editor.commit();
    break;
  }

 }

 @Override
 public void onClick(View v) {
  switch (v.getId()){
   case R.id.setPermision:
    // 打开系统里面的服务,方便用户直接赋予权限
    Intent intent = new Intent(Settings.ACTION_NOTIFICATION_LISTENER_SETTINGS);
    startActivity(intent);
    break;
  }

 }

 @Override
 public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {
 }

 @Override
 public void onStartTrackingTouch(SeekBar seekBar) {
 }

 @Override
 public void onStopTrackingTouch(SeekBar seekBar) {
  // seekbar的监听,滑动停止就修改系统媒体音量
  audioManager.setStreamVolume(AudioManager.STREAM_MUSIC,seekBar.getProgress(),0);
 }

 // 音量广播接收
 class VolumReceiver extends BroadcastReceiver{
  @Override
  public void onReceive(Context context, Intent intent) {
   seekBar.setProgress(audioManager.getStreamVolume(AudioManager.STREAM_MUSIC));
  }
 }
} 

Mainfest 

<?xml version="1.0" encoding="utf-8"?>
<manifest package="com.fndroid.administrator.justforyou"
   xmlns:android="http://schemas.android.com/apk/res/android">

 <uses-permission android:name="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE"/>
 <uses-permission android:name="android.permission.WAKE_LOCK" />
 <uses-permission android:name="android.permission.DISABLE_KEYGUARD" />

 <application
  android:allowBackup="true"
  android:icon="@mipmap/ic_launcher"
  android:label="@string/app_name"
  android:supportsRtl="true"
  android:theme="@style/AppTheme">
  <activity android:name=".MainActivity">
   <intent-filter>
    <action android:name="android.intent.action.MAIN"/>

    <category android:name="android.intent.category.LAUNCHER"/>
   </intent-filter>
  </activity>
  <service android:name=".NotificationService"
     android:permission="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE">
   <intent-filter>
    <action android:name="android.service.notification.NotificationListenerService" />
   </intent-filter>
  </service>
 </application>

</manifest> 

gradle添加依赖,因为用了Snackbar 

dependencies {
 compile fileTree(dir: 'libs', include: ['*.jar'])
 testCompile 'junit:junit:4.12'
 compile 'com.android.support:appcompat-v7:23.1.1'
 compile 'com.android.support:design:23.1.1'
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。

以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索Android抢红包助手
, Android抢红包
Android红包
ios 抢红包助手开发、android抢红包开发、android 语音助手开发、android开发助手、android 手机助手开发,以便于您获取更多的相关知识。

时间: 2024-12-07 03:16:45

Android抢红包助手开发全攻略_Android的相关文章

Android中FoldingLayout折叠布局的用法及实战全攻略_Android

一.概述无意中翻到的FoldingLayout的介绍的博客,以及github地址.感觉很nice呀,于是花了点时间研究以及编写,本篇博客将带大家从最基本的原理分析,一步一步的实现我们的FoldingLayout,当然了,如果你能力过硬,可以直接下载github上的代码进行学习. 博客基本分为以下几个部分: 1.Matrix的setPolyToPoly使用 2.在图片上使用渐变和阴影 3.初步的FoldingLayout的实现,完成图片的折叠显示(可控制折叠次数.包含阴影的绘制) 4.引入手势,手

Android使用XML全攻略(1)

Android使用XML全攻略(1)    Android 是针对移动设备的一种新兴的开源操作系统和 SDK.借助它,您可以创建功能强大的移动应用程序.当您的应用程序可以访问 Web 服务时,其吸引力会大大增加,这意味着您需要使用 Web 语言:XML.在本文中,您将了解在 Android 上使用 XML 的不同方法,以及如何使用它们构建自己的 Android 应用程序.   入门 在本文中,您将学习如何构建通过 Internet 使用 XML 的 Android 应用程序.Android 应用

Android使用XML全攻略(2)

Android使用XML全攻略(2)   Android 是针对移动设备的一种新兴的开源操作系统和 SDK.借助它,您可以创建功能强大的移动应用程序.当您的应用程序可以访问 Web 服务时,其吸引力会大大增加,这意味着您需要使用 Web 语言:XML.在本文中,您将了解在 Android 上使用 XML 的不同方法,以及如何使用它们构建自己的 Android 应用程序.   更加简单的 SAX 解析 Android SDK 提供了一个名称为android.util.Xml的实用类.清单 7 展示

Eclipse+JBoss+MySQL开发环境设置全攻略

mysql|攻略     J2EE是很好的.作为开发环境,如果采用经典配置:JBuilder+Weblogic+Oracle,自是得心应手,但价格是惊人的.此配置主要是针对大型或超大型应用,硬件要求也很高,针对国内以中小型应用为主的现况,不作推荐.     虽然国内开发者早已习惯,但笔者以为还是防患于未然,应尽早加入OpenSource行列,促进国内软件业的发展.     本文所推荐的Eclipse.JBoss.MySQL均是名气很高的开源软件,并且非常实用.     1.JDK:到http:/

微信公众帐号开发教程(13) 图文消息全攻略

引言及内容概要 已经有几位读者抱怨"柳峰只用到文本消息作为示例,从来不提图文消息,都不知 道图文消息该如何使用",好吧,我错了,原本以为把基础API封装完.框架搭建好,再给出一个文本消息的 使用示例,大家就能够照猫画虎的,或许是因为我的绘画功底太差,画出的那只猫本来就不像猫吧-- 本篇主要介绍微信公众帐号开发中图文消息的使用,以及图文消息的几种表现形式.标题取名为"图 文消息全攻略",这绝对不是标题党,是想借此机会把大家对图文消息相关的问题.疑虑.障碍全部清除掉.

微信公众帐号开发教程之图文消息全攻略_java

引言及内容概要 已经有几位读者抱怨"柳峰只用到文本消息作为示例,从来不提图文消息,都不知道图文消息该如何使用",好吧,我错了,原本以为把基础API封装完.框架搭建好,再给出一个文本消息的使用示例,大家就能够照猫画虎的,或许是因为我的绘画功底太差,画出的那只猫本来就不像猫吧-- 本篇主要介绍微信公众帐号开发中图文消息的使用,以及图文消息的几种表现形式.标题取名为"图文消息全攻略",这绝对不是标题党,是想借此机会把大家对图文消息相关的问题.疑虑.障碍全部清除掉. 图文消

Jbuilder6+weblogic6.1开发Entity Bean 全攻略

Jbuilder6+weblogic6.1开发Entity Bean 全攻略(建议加入精华区)我现在是边学边干,今天总算给做出来了,反正文档是写给公司的,就顺便拿到网上来给大家一起分享了,因为这几天实在把我弄得很痛苦,碰到好多困难,走了许多弯路,做出来才发现原来如此简单,所以发出来,让大家少走弯路!1.首先开发环境是Jbuilder6+weblogic6.1, 数据库因为这里是测试,所以用的是sql server,如果用oracle,相应的作修改就可以了.(至于Jbuilder6+Weblogi

安卓单元测试全攻略,让代码测试一劳永逸

本文讲的是安卓单元测试全攻略,让代码测试一劳永逸,安卓单元测试,只看这一篇就足够啦.真正的完全解析,真正的从0到1,Junit结合Mockito与Robolectric实现从M到V再到P,Jacoco扫描函数.逻辑.代码行数单元测试覆盖率100%的全面测试.你是否还在为了验证联网与未联网状态而频繁的开关WiFi开关?或者你是否还在为一个switch判断而频繁的使用debug断点setValue来观测代码的逻辑判断情况?又或者你是否还在为了校验某个UI文案的正确性而反复的比对UI稿?可能你会反问,

Tomcat4.01全攻略

攻略 鉴于很多人对tomcat的配置及用法不解,特在网上搜的一篇文章救急. ================== Tomcat4.01全攻略 一:简介 tomcat是jakarta项目中的一个重要的子项目,其被JavaWorld杂志的编辑选为2001年度最具创新的java产品(Most Innovative Java Product),同时它又是sun公司官方推荐的servlet和jsp容器(具体可以见http://java.sun.com/products/jsp/tomcat/),因此其越来