-
[安卓开源]安卓记账本毕业设计项目源码
[安卓开源]安卓记账本毕业设计项目源码 仅供参考
- 2022-06-28 19:11:49下载
- 积分: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 Toast使用示例详解,含源码下载
这几种情况都是比较常用的 Toast示例,供大家参考学习
- 2014-04-14下载
- 积分:1
-
Android两级的城市选择功能菜单
Android两级的城市选择功能菜单,这个功能相信大家都熟悉吧,不管是在电脑端还是在移动端,选择全国城市都是很常见的,这个代码就是实现这个功能的,在等到intent的回复 应该重写onActivityResult方法,此为部分代码:
ublic class Second extends ExpandableListActivity {
//一级分组
String[] arrTypes = {"山东","天津","湖南"};
//二级分组
String[][] arr = {
{"广州","深圳","珠海","中山"}
,{"桂林","柳州","南宁","广西"}
,{"北京","河北","河南","四川"}
};详细情况请下载源码查看。
- 2022-03-01 03:06:33下载
- 积分:1
-
仿赶集生活android客户端的介绍启动界面 实例源码
仿赶集生活android客户端的介绍启动界面 实例源码
- 2015-02-19下载
- 积分:1
-
TravelApp-(1)
一个简单的安卓app应用程序,类似于滴答拼车,但是拼游的,大家可以通过此软件找到一起出游的小伙伴(A simple Android app applications, similar to the ticking carpool, but to fight tour, we can travel together by this software to find a small partner)
- 2020-10-22 16:17:23下载
- 积分:1
-
简单记事本
很实用很简答的记事本源代码,适合新手学习。
- 2022-03-18 08:33:54下载
- 积分:1
-
android图片旋转、淡入淡出、缩放效果、移动效果示例
android图片旋转、淡入淡出、缩放效果、移动效果示例,先来看下截图的运行效果,单击对应的按钮,即可看到效果,淡入淡出之类的,图片旋转之类的。
图片旋转的代码如下:
rotateAnimation.setDuration(5000);
animationSet.addAnimation(rotateAnimation);
image.startAnimation(animationSet);
淡入淡出效果:
AnimationSet animationSet = new AnimationSet(true);
animationSet.setInterpolator(new AccelerateInterpolator());
AlphaAnimation alphaAnimation = new AlphaAnimation(1, 0);
RotateAnimation rotateAnimation =
new RotateAnimation(0, 360,
Animation.RELATIVE_TO_PARENT, 1f,
Animation.RELATIVE_TO_PARENT, 0f);
animationSet.addAnimation(alphaAnimation);
animationSet.addAnimation(rotateAnimation);
alphaAnimation.setDuration(3000);
image.startAnimation(animationSet);
animationSet.setRepeatCount(4);
- 2023-02-06 16:40:04下载
- 积分:1
-
自定义TextView
解决textView的换行问题
- 2021-03-13 18:19:24下载
- 积分:1
-
Android获取屏幕适配的小工具
这是一个用于获取Android屏幕分辨率的信息,主要可以用来做屏幕适配功能。
- 2022-03-04 23:43:26下载
- 积分:1