搜索资源列表
antPproguard
- android自动打包方法(ant+proguard+签名) 现在优化减少体积和防止别人反编译,需要把编译后.class进行混淆,开始在网上看了一些关于ProGuard的介绍,基本上都是使用ADT自带的打包方式,那个打包方式太慢了,还要手工输密码,一个字烦。 于是开始寻找ant+proguard+签名的打包方式,遗憾的是资料不是缺手就是断脚。 好吧,看来得食自己了,!@#¥@#!@#!@##¥@#¥!@#@ 转眼一周,我++,终于把东西搞出来 ps:我们项目还有一个特殊需求
HttpOperationDemo
- android HTTP连接工具类.其中包含了Json,XML解析类。可以方便开发。-android HTTP connection utility class which contains the Json, XML parsing class. Can facilitate the development.
KXML2
- j2me常用的XML解析器KXML的源码,直接放到工程里,可以解决找不到类的错误-j2me common source XML parser KXML directly into the project, the class not found error can be solved
NewsManager
- 一个管理html文件的类,android的,从xml描述文件中解析html文件属性,并对html文件进行管理,后边还有很多代码,不知道怎么全部穿上去-Html file a management class, android, from the descr iption file to parse html xml file properties, and html file management, there are many behind the code, do not know how
Android_srf
- 手机输入法手势识别,输入法手势识别 注意: android.gesture这个类在api-4(SDK1.6)才开始支持的! 提醒:默认存到SD卡中,所以别忘记在AndroidMainfest.xml加上SD卡读写权限! -Phone input gesture recognition, gesture recognition input method Note: android.gesture this class in the api-4 (SDK1.6) start
Content-Providers
- 前提条件 存在一个用于存放数据的系统 实现步骤 1. 定义一个继承 ContentProvider的类 2. 声明一个Uri类型的常量CONTENT_URI 3.实现query()、insert()、update()、delete()、 getType()、onCreate() 4.在AndroidManifest.xml文件中进行声明 -There is a prerequisite for the system impl
Activity05
- 1.声明四个控件(2个EditText,一个TextView,一个Button)修改layout:main.xml * 2.要为2个EditView设置数值并显示 * 3.要创建一个监听器类,用来监听按键事件onclick * 4.将监听器类绑定在监听按键上-A statement four controls (two an EditText and a TextView and a Button) to modify the layout: main.xml* 2 to 2
android_animation
- 在Andriod开发中,Animation是用来给控件制作效果的。大多数的控件都可以用这个类,这个类包含了4种基本动作,分别为移动,旋转,淡入淡出,缩放。在使用Animation时,可以在.java文件中用java代码对其进行设置,这样的优点是可以方便调试程序效果;另外一种方法就是在xml中对控件的属性做设置,好处是代码的重用性比较高,缺点是不方便调试。本节中就简单介绍下这2种方法的使用流程。参考资料为mars老师的教程。 一、在java代码中使用Animation. 在java代
android_service
- 本次实验主要是学习怎样在activity中启动一个service,启动的service的生命周期顺序是哪些,然后service通过广播机制向特定的activity传递数据,传送数据当然用的是intent,然后接收到该广播的activity读取intent中的数据,根据读取到的数据来更新activity的UI。 关于怎样通过service广播机制来更新activity的UI,可以阅读网上的这篇文章:http://www.pocketdigi.com/20110303/197.html
org.fax.learn
- 一款简单的上课课程表。用表格布局的方式布局,有时间,地点,课程等信息。有滚动条。是初期学习安卓xml布局的好材料。-A simple class curriculum. With the way the layout of the table layout.Have time, place, curriculum and other information.Have Scroll bar. Good material for the early learning Android xml layo
HorizontialListView
- 横向列表,可以直接作为控件使用,在XML布局中用包名类名即可,用法和listView类似-Horizontal list, can be directly used as a control, similar to the class name can be used package names in the XML layout, usage and listView
input-method
- 这是Android输入法手势操作源码,注意: android.gesture这个类在api-4(SDK1.6)才开始支持的! 提醒:默认存到SD卡中,所以别忘记在AndroidMainfest.xml加上SD卡读写权限!-Android input method gestures operation source, pay attention: android.gesture this class in the api-4 (SDK1.6) began to support! Remind
ted_class
- 视频应用ted的class文件,不包含xml等文件,可用JD-GUI打开-Video applications ted the class file does not contain the xml and other documents, can be used to open JD-GUI
android-editText-demo
- 这个教程全部是我做原创辛苦,创作不容易希望给个分。 这里面主要涉及到,文本监听和按钮特效以及xml布局,字符串格式化,等方面的实例,按钮特效使用shape绘制。 对于文本框的监听我给他做了一个实时的输出可以方便大家,很好地观察TextWatcher这个类所返回的数值变化-This tutorial is all I do original hard, not easy to want to give a creative points. This is mainly related
light
- 超简单的语句就可以完成数据库操作, 无xml 配置, 三步搞定:1. 配置文件,2.定义模型,3.操作; 模型类中 无get,set 方法。 要的就是清爽,一切才刚刚开始!-Super simple statement to complete the operation, no xml configuration, three steps to get: 1 configuration file to define the model 2, 3 operations model class
jd2ddh
- 简单2D动画源码是以很短的时间间隔连续显示一系列图像,帧图片要放置在/res/drawable(frame1.png......framen.jpg) 创建一个xml(假设名为frame.xml)文件为帧集,也放置/res/drawable下,这个XML文件其实定义了AnimationDrawable,类中的图像集合,可将这个Drawable对象设置为ImageView的背景然后让其播放。-Simple 2D animation source code is to show a series
GestureProject
- 手机输入法手势识别源代码输入法手势识别 注意: android.gesture这个类在api-4(SDK1.6)才开始支持的! 提醒:默认存到SD卡中,所以别忘记在AndroidMainfest.xml加上SD卡读写权限! 关于两种方式创建模拟器的SDcard在【Android2D游戏开发之十】有详解 if (Environment.getExternalStorageState() != null) {// 这个方法在试探终端是否有sdcard! if (!file.exi
Android_wyfy
- 维语词典源码是一个词典翻译项目,测试运行以后我就惊呆,界面都是蝌蚪文,一开始我以为是阿拉伯语,搞了好久才发现是维语(维吾尔族语言) !,不得不说这个项目很逗,虽然strings.xml文件里面配置的字符串都是维语,但是源码里面的注释是用的中文简体,class是用汉语拼音命名的。从项目整体的架构上目测应该是学生作品,一开始项目缺少jsoup-1.6.0.jar和ksoap2-android-assembly-2.4-jar-with-dependencies.jar这两个jar包,都已经找齐了放进
layoutroot
- Android xml dp换算类,用于dp换算成px,支持1280-320屏幕之间的绝对换算(Android XML DP conversion class, used for DP conversion to PX, to support the absolute conversion between the 1280-320 screens)