Android
lk5423968
Everything will be better, and better, just clam down do my best to accumulate
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
How to read images from drawable folder, not by R.drawable.[imageid]
public void getImageFoldes(String filepath){ File file = new File(filepath); File[] files = file.listFiles();原创 2011-10-17 14:49:05 · 597 阅读 · 0 评论 -
Using Visual Studio to Develop Native Android Code
http://visualgdb.com/tutorials/android/This tutorial shows how to build and debug a simple Android App with a native library with Visual Studio.Before you begin, please install VisualG原创 2014-09-04 15:15:01 · 895 阅读 · 0 评论 -
Android应用程序的目录结构
1.src目录 src目录中存放的是该项目的源代码,其内部结构会根据用户所声明的包自动组织,该目录的组织方式为src/aaa/bbb/HelloWord.java,其中aaa/bbb为包名软件开发人员在项目开发过程中,大部分时间是对该目录下的源代码文件进行编写。2.gen目录 该目录下的文件全部都是ADT自动生成的,一般并不需要去修改,实际上该目录下只定义了一个R.java原创 2014-09-04 20:32:21 · 1222 阅读 · 0 评论 -
SSH框架总结(框架分析+环境搭建+实例源码下载)
首先,SSH不是一个框架,而是多个框架(struts+spring+hibernate)的集成,是目前较流行的一种Web应用程序开源集成框架,用于构建灵活、易于扩展的多层Web应用程序。 集成SSH框架的系统从职责上分为四层:表示层、业务逻辑层、数据持久层和域模块层(实体层)。 Struts作为系统的整体基础架构,负责MVC的分离,在Struts框架的模型部分,控制业务跳转,利原创 2014-12-21 20:44:07 · 698 阅读 · 0 评论 -
Fiddler抓取Android真机上的HTTPS包
http://blog.youkuaiyun.com/roland_sun/article/details/30078353现在的Android应用程序几乎都会和网络打交道,所以在分析一个apk的时候,如果可以抓取出其发出的数据包,将对分析程序的流程和逻辑有极大的帮助。对于HTTP包来说,已经有很多种分析的方法了,例如用tcpdump,或者将要分析的程序跑在模拟器中然后直接在物理机上用Wi转载 2015-05-09 11:25:59 · 954 阅读 · 0 评论 -
Android之NDK开发
http://www by UniDeals"> cnblogs.com/devinzhang/archive/2012/02/29/2373729.html 一、NDK产生的背景 Android平台从诞生起,就已经支持C、C++开发。众所周知,Android的SDK基于Java实现,这意味着基于Android SDK进行开发的第三方应用都必须使用Java语言。但这并不等同于转载 2015-06-01 14:35:51 · 512 阅读 · 0 评论 -
HTML5 web应用打包成android应用
http://ruixiazun.blog.163.com/blog/static/9068791820139152928868/作为下一代的网页语言,HTML5拥有很多让人期待已久的新特性。HTML5的优势之一在于能够实现跨平台游戏编码移植,现在已经有很多公司在移动 设备上使用HTML5技术。随着HTML5跨平台支持的不断增强和智能手机的迅速普,HTML5技术有着非常好的发展转载 2015-06-03 11:53:41 · 745 阅读 · 0 评论 -
Execution failed for task ':app:compileDebugAidl': aidl is missing
进去之后选中app module,然后修改SDK version 和build tool version将它们的版本修改低一点。原创 2015-06-04 15:00:48 · 2570 阅读 · 0 评论 -
MUI开发注意事项 Uncaught ReferenceError: plus is not defined
http://ask.dcloud.net.cn/article/122DOM结构关于mui页面的dom,你需要知道如下规则。固定栏靠前所谓的固定栏,也就是带有.mui-bar属性的节点,都是基于fixed定位的元素;常见组件包括:顶部导航栏(.mui-bar-nav)、底部工具条(.mui-bar-footer)、底部选项卡(.mui-bar-ta转载 2015-07-02 11:57:14 · 38467 阅读 · 2 评论 -
[Android算法] Android蓝牙开发浅谈
http://www.eoeandroid.com/thread-18993-1-1.html对于一般的软件开发人员来说,蓝牙是很少用到的,尤其是Android的蓝牙开发,国内的例子很少 Android对于蓝牙开发从2.0版本的sdk才开始支持,而且模拟器不支持,测试至少需要两部手机,所以制约了很多技术人员的开发,刚巧这段时间公司有蓝牙开发的需求,我看了很多国内、国外的资料转载 2015-06-12 15:26:39 · 459 阅读 · 0 评论 -
Android蓝牙开发浅谈
http://www.cnblogs.com/freeliver54/archive/2011/12/13/2285980.html对于一般的软件开发人员来说,蓝牙是很少用到的,尤其是Android的蓝牙开发,国内的例子很少 Android对于蓝牙开发从2.0版本的sdk才开始支持,而且模拟器不支持,测试至少需要两部手机,所以制约了很多技术人员的开发,刚巧这段时间公转载 2015-07-27 18:26:18 · 596 阅读 · 0 评论 -
Android蓝牙串口通信模板及demo,trick
转载请注明出处,谢谢http://blog.youkuaiyun.com/metalseed/article/details/7988945 by---MetalSeedAndroid蓝牙操作:与蓝牙串口模块通信,或其他蓝牙设备通信。初涉android的蓝牙操作,按照固定MAC地址连接获取Device时,程序始终是异常终止,查了好多天代码都没查出原因。今天改了一下转载 2015-07-30 22:53:33 · 1039 阅读 · 0 评论 -
Send and Receive JSON between Android and PHP Web Service
http://www.codeproject.com/Articles/267023/Send-and-receive-json-between-android-and-phpDownload source code - 3.27 MBDownload PHP Web Service - 1.69 KBIntroductionYou are creati转载 2015-08-16 23:28:14 · 1140 阅读 · 0 评论 -
Android SDK: Embed a WebView with the WebKit Engine
http://code.tutsplus.com/tutorials/android-sdk-embed-a-webview-with-the-webkit-engine--mobile-1459This quick tip will demonstrate how you can embed an Android WebView in your application wit原创 2016-01-04 17:25:23 · 1181 阅读 · 0 评论 -
APK 反编译
http://www.newasp.net/soft/70498.html#downloads软件标签:ApkDec android反编译工具ApkDec是一款免费的绿色APK反编译工具 forandroid ,由android开发者社区开发。ApkDec使用说明:(1)使用帮助1.选择 all 全部编译内容包括jar、xml、及其他资源文件2.原创 2014-09-01 15:06:30 · 667 阅读 · 0 评论 -
PhoneGap 2.0正式版发布 更名为Apache Cordova
http://mobile.51cto.com/web-351295.htm Adobe PhoneGap 团队近日在美国波特兰的年度 PhoneGap Day 上正式发布了 2.0 版本。PhoneGap是一个开源的跨平台移动应用开发框架,让 Web 开发人员能够使用熟悉的 HTML,CSS 和 JavaScript 构建跨平台的移动本地应用,且开发跨平台应用时只需使用标准网络技术(HT转载 2013-11-13 13:33:43 · 907 阅读 · 0 评论 -
android手机的刷机
android手机的刷机,就相当于给它重装一下系统,这和我们常见的电脑重装系统类似。刷机前先对自己手机中的一些重要内容进行备份吧,像名片,短信,日历等重要信息,有需要的就先备份一下,否则刷机后就都没了。备份好以后,我们需要先给我们的android手机下载一个适合该手机使用的rom包搜索,将下载好的rom包通过数据线或是读卡器放到SD卡的根目录下,然后重命名为update.zip,然后关机,按住原创 2013-11-03 16:35:46 · 960 阅读 · 0 评论 -
passing data between Activities
(To follow along with this, you should understand the basics of starting new activities:Link )The easiest way to pass data from one ac原创 2011-10-16 22:04:53 · 669 阅读 · 0 评论 -
Understanding and Using OpenGL Texture Objects
With the advent of the OpenGL 1.1 specification, texture objects became part of the API. These texture objects have been available for quite some time as extensions to OpenGL 1.0 because of their incr原创 2011-11-21 15:53:05 · 1087 阅读 · 0 评论 -
OpenGL Programming Guide or 'The Red Book'
About This GuideChapter 1: Introduction to OpenGLChapter 2: Drawing Geometric ObjectsChapter 3: ViewingChapter 4: Display ListsChapter 5: ColorChapter 6: LightingChapter 7: Blending, Antialiasing, and转载 2011-11-26 21:50:52 · 539 阅读 · 0 评论 -
Building an Android FileBrowser (list-based)
The Full Source:res/layout/file_row.xmlversion="1.0"encoding="utf-8"?> xmlns:android="http://schemas.android.com/apk/res/android" android:layout_wid原创 2011-11-05 16:38:02 · 790 阅读 · 0 评论 -
Working with Images in Google's Android
Working with Images in Google's AndroidMay 21, 2008By Chunyen LiuBio »Send Email »More Articles »Google's Android platform really took the developers' world by storm with the announcemen转载 2011-11-06 22:11:32 · 1395 阅读 · 0 评论 -
Work with data folder
If you are on a real phone the /data folder will appear empty unless you have root access. An application likeroot explorer can allow you access to these folders (with the proper permissions). Thi原创 2011-11-07 14:34:19 · 653 阅读 · 0 评论 -
At the begining of Android development
If you are fresher to Android development, this article will be very useful for you.Step1:Download jdk and jre, then install them, because the android application is based on java environment原创 2011-09-28 20:29:26 · 5027 阅读 · 0 评论 -
Android SDK Tutorial: Button onClick Event
Making your app notice when a button was clicked is pretty simple, the code am giving you here is what I found to be the shortest method to do so.The ResultWe will make a button that updates a lab原创 2012-07-18 16:50:03 · 1014 阅读 · 0 评论 -
Android SQLite Database and ContentProvider - Tutorial
Using the Android SQLite Database This tutorial describes how to use the SQLite database in Android applications. It also demonstrates how to use existing ContentProvider and how to define new ones.原创 2012-07-18 23:48:32 · 3393 阅读 · 0 评论 -
Android WebView example
Android’s WebView allows you to open an own windows for viewing URL or custom html markup page.In this tutorial, you will create two pages, a page with a single button, when you clicked on it, it原创 2012-08-07 23:21:24 · 840 阅读 · 0 评论 -
Debugging on my phone (Eclipse, Android)
Install the USB Driver using Android SDK Manager:Find and edit android_winusb.inf following the instructions from http://www.flexjunk.com/2010/05/01/installing-htc-incredible-android-sd-drivers/原创 2012-07-23 21:27:05 · 994 阅读 · 0 评论 -
Building Web Apps in WebView
https://developer.android.com/guide/webapps/webview.htmlBuilding Web Apps in WebViewIf you want to deliver a web application (or just a web page) as a part of a client application, you can转载 2016-01-05 15:14:25 · 471 阅读 · 0 评论
分享