博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Anroid Studio第七期 - 语音动画
阅读量:6676 次
发布时间:2019-06-25

本文共 556 字,大约阅读时间需要 1 分钟。

    代码已经整理好,效果如下图:

    

    地址:http://down.51cto.com/data/2213924

    

// 广播方法

// sendBroadcast(new Intent("you"));

// GerenziliaoActivity.this.finish();

// 广播

private BroadcastReceiver broadcastReceiver = new BroadcastReceiver() {

@Override

public void onReceive(Context context, Intent intent) {

// TODO Auto-generated method stub

finish();

}

};

                                                

@Override

protected void onResume() {

// TODO Auto-generated method stub

super.onResume();

IntentFilter intentFilter = new IntentFilter();

intentFilter.addAction("fuckyou");

registerReceiver(broadcastReceiver, intentFilter);

}

转载地址:http://tirxo.baihongyu.com/

你可能感兴趣的文章
Exception练习-Exception的正确使用
查看>>
关于rms,打开文档的时候提示您没有权限打开文档,因为您的权限已过期
查看>>
如何在eclipse里关联查看android源码
查看>>
总结:提高服务并发能力之DB
查看>>
jdbcTemplate.queryForList获取的List转实体 -----解决方案
查看>>
IBM V7000U
查看>>
关于Java Servlet的中文乱码
查看>>
Android Push Notification实现信息推送使用
查看>>
Netty权威指南带目录完整版.pdf
查看>>
AFNetWorking https 双向认证
查看>>
Eclipse Maven工作空间中工程依赖调试
查看>>
将Jetty做为内嵌的服务器使用
查看>>
1.1 DHCP服务的介绍和安装
查看>>
计算机安全篇1
查看>>
drawable 如何单个设置边界
查看>>
Nachos File System
查看>>
tomcat远程调试、普通java程序远程调试
查看>>
python day11
查看>>
office 2013-word选项配置参数
查看>>
Hadoop调试源代码
查看>>