登录
首页 » Android » 呼叫接收机

呼叫接收机

于 2023-01-17 发布 文件大小:1.26 MB
0 165
下载积分: 2 下载次数: 1

代码说明:

打开源代码关于呼叫接收机的新手开始 android 的代码。我希望它将帮助任何一个:D

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • android下pcap静态编译lib库
    android的jni下编译的pcap静态库,用于抓包,分析。版本为libpcap version 0.9.8,压缩包里面放了需要的2个api头文件,测试已经通过,也就不提交android下的测试代码了,有兴趣的可以试试。
    2022-01-24 14:38:48下载
    积分:1
  • Android 系统pedometer计步器源码
    Android 系统pedometer计步器源码,或者叫做步数计,计数器,微信步数计数器,本源码是android上的开源项目pedometer 的完整源代码,来自国外,注释为英文,可以国内用户开发基于Android的计步器提供一些原始资料。
    2022-08-02 20:14:25下载
    积分:1
  • vomc
    使用matlab软件里面的simulink仿真OFDM系统(simulation of the ofdm system using the simulink in the matlab software)
    2019-03-27 15:08:09下载
    积分:1
  • 开发API人脸检测实例
    开发API人脸检测实例
    2015-06-01下载
    积分:1
  • Android的PIC面板
    Android的PIC面板
    2022-03-14 11:59:23下载
    积分:1
  • SMPP-Gateway-System
    1. SMPP网关概述(联系dotphoenix@qq.com获取更多信息) 1.1 包含一个标准的SMPP Server(SMPP模拟器),一个SMPP Client 和 SDK 1.2 支持标准的SMPP V3.4,支持如下功能:多种bind模式,unbind,submit_sm,delivery_sm,enquire_link,generic_ack 1.3 SMPP Server可运行于LinuxWindowsOSXEmbeded Linux 1.4 SMPP Client可运行于WindowsLinuxOSXAndroidiOSEmbeded Linux 1.5 SDK支持WindowsLinuxOSXAndroidiOSEmbeded Linux,可被JavaC#C++MFCPHP等调用,并提供基于json的HTTP API 1.6 支持MYSQL和SQLITE数据库 1.7 支持自定义计费,支持自定义业务系统 1.8 支持大吞吐量(使用数据库可支持500/秒,不使用数据库可支持8000条/秒) 1.9 兼容性良好,可以和几乎所有主流和非主流的网关及客户端正常工作( SMPP Gateway System(Contact dotphoenix@qq.com to get more information) 1 Including a standard SMPP Server(SMPP Simulator),a SMPP Client and SDK 2 Implement SMPP V3.4,Support PDUs including:3 bind modes,unbind,submit_sm,delivery_sm,enquire_link,generic_ack 3 SMPP Server supported platforms: LinuxWindowsOSXEmbeded Linux 4 SMPP Client supported platforms: WindowsLinuxOSXAndroidiOSEmbeded Linux 5 SDK supported platforms: WindowsLinuxOSXAndroidiOSEmbeded Linux,supported languages: JavaC#C++MFCPHP,and also including HTTP API based on JSON. 6 Suppored s: MYSQLSQLITE 7 Support customizing billing system and business system 8 Small delay, good reliability and large throughput (500 PDUs/s if need ,8000 PDUs/s if no need ) 9 Good compatibility, can co-work with nearly all the mainstream and non-mainstream gateways/servers/clients )
    2016-01-18 12:37:14下载
    积分:1
  • Android-memory-manage-
    非常好,非常棒,非常不错的android内存管理。(android memory manage)
    2013-10-09 07:41:43下载
    积分:1
  • 安卓listview下拉刷新,上拉加载更多
    资源描述 资源描述 完整源码,能直接运行,原理清晰,可运用到自己项目!
    2022-06-17 07:57:16下载
    积分:1
  • Android 自定义弹出式菜单栏源码下载
    Android Custom Menu 弹出窗口式自定义菜单栏的实例源码,运行后通过轻触手机的菜单键,来唤出菜单窗口,再次点击菜单键,自定义弹出对话框则隐藏,菜单是布局在对话框窗口中的,在本例中,自定义弹出窗口继承PopupWindow,并封装有封装GridView组件和View 组件,GridView 为每个Item设置监听事件方法,部分代码先睹为快:   public CustomMenu(Activity activity, List menus) {   super(activity);   //View 样式文件R.layout.menu   view = activity.getLayoutInflater().inflate(R.layout.menu, null);   //实例化GridView组件   gvMenu = (GridView)view.findViewById(R.id.gv_menu);   //相关参数设置   this.setContentView(view);   this.setWidth(LayoutParams.FILL_PARENT);   this.setHeight(LayoutParams.WRAP_CONTENT);   //图片获取   Drawable drawable = activity.getResources().getDrawable(R.drawable.selector_focused_shape);   //相关特效设置   this.setBackgroundDrawable(drawable);   this.setAnimationStyle(R.style.PopupAnimation);   this.setFocusable(true);   //设置相关OnKeyListener事件   gvMenu.setOnKeyListener(new OnKeyListener() {   @Override   public boolean onKey(View v, int keyCode, KeyEvent event) {   if ((keyCode == KeyEvent.KEYCODE_MENU)&&(isShowing())) {    dismiss();//关闭P
    2022-10-12 07:55:03下载
    积分:1
  • Happychat2
    Java源码,网络相关,聊在室   一个多用户的Java聊天室程序源码,是一个比较完整的毕业设计作品,实现了以下功能:用户注册、资料保存、多用户登录、多用户同聊、私聊、保存用户记录、用户离开记录自动清除、在线人数监视等多种功能。(Java source code, network-related, program source code of Java chat rooms chat room more than one user, is a relatively complete graduation designs, implements the following functions: user registration, data storage, multi-user login, multi-user chat with whisper save the user record, the user leaves the record is automatically cleared, the line number of monitoring a variety of functions.)
    2021-02-17 19:09:45下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载