android
iamfjg
这个作者很懒,什么都没留下…
展开
-
Installing the Android SDK
You must install the Android SDK before you can develop apps. Windows、Intel-based Mac OS X、i386-based Linux operating systems. 下载并解压后,更新PATH环境变量。 下载和安装SDK的前提条件: Android SDK支持一下操作系统: (1)...原创 2015-03-24 22:57:43 · 545 阅读 · 0 评论 -
Using WebViews and JavaScript
If you want to leverage your web development skills to build Android apps, another interesting option is available: WebViews. Android provides the android.webkit.WebView, a View that shows a we...原创 2015-03-26 23:19:42 · 83 阅读 · 0 评论 -
Web integration
Android comes equipped with WebKit, a complete HTML rendering engine also used in Apple's Safari and Google's Chrome. WebKit supports CSS Level 3 stylesheets and also sports a performant JavaSc...原创 2015-03-26 23:49:15 · 144 阅读 · 0 评论 -
Storage engine
Android ships with SQLite, a fully transactional database engine based on the SQL-92 standard. First, SQLite doesn't require a client-server architecture. SQLite can be embedded directly with th...原创 2015-03-27 00:06:12 · 129 阅读 · 0 评论 -
Intents and IntentFilters
One area where Android shines is the flexibility it provides in communicating between components, and sharing data between them. 利用的就是Intent- and IntentFilter-based events. Intent: is a descript...原创 2015-03-27 00:32:26 · 106 阅读 · 0 评论 -
The Application object
An Application object has a well-defined lifecycle and can be used as a data structure for holding an application's global state.It's created when the process for your application is created, and it ...原创 2015-03-27 00:54:32 · 83 阅读 · 0 评论 -
Views and widgets
The class android.view.View is the base class for UI objects in Android. There are three major types of views: SurfaceView ViewGroup Widget SurfaceView: provides a direct drawing surface. ...原创 2015-03-27 10:33:34 · 154 阅读 · 0 评论 -
Activities
An Activity is a single focused thing that the user can do. Typically an Activity will correspond to a screen in an application. but keep in mind that an Activity can also be a floating window o...原创 2015-03-27 11:02:52 · 166 阅读 · 0 评论 -
用Genymotion模拟器测试app
测试app最好的方式是使用一台真实的设备。Android模拟器是相当的慢,且它不能像真实设备那样为你提供 所有的特性(功能),例如相机、传感器。 要想使模拟器运行的快点,你可以安装Hardware Accelerated Execution Manager(HAXM),然而,还有一个 更好的办法,就是:Genymotion Genymotion is a real, fas...原创 2018-02-27 13:42:22 · 632 阅读 · 0 评论