-
登录注册代码
登录注册代码
- 2014-01-08下载
- 积分:1
-
Android Bluetooth Connectivity
与任何设备具有蓝牙连接的应用程序
- 2022-01-26 04:56:20下载
- 积分:1
-
android-heart-rate-monitor
Android Java 通过蓝牙接受数据,画出无线心电图 (ECG analysis software, including a QRS detector algorithm. The algorithm here, designed to detect the QRS complexes in the electrocardiogram using by Pan J and Tompkins WJ. A Real-Time QRS Detection Algorithm.)
- 2014-04-21 22:37:04下载
- 积分:1
-
Android 的 xml 解析
Android 的 XML 解析是另一种方法从给定的 url 访问 xml 数据和显示您的 url 的所有字段。
- 2022-03-17 00:35:32下载
- 积分:1
-
一个简单的斗地主游戏代码,可以参考
斗地主游戏。非常简单、可以用,但是有bug 可以做简单的参考学习
- 2022-03-04 00:18:01下载
- 积分:1
-
android 百度地图API最新版 gps定位 获取详细地址 实例源码下载
百度地图api实例代码,无须申请appkey即可使用
- 2013-02-06下载
- 积分:1
-
ListView
ListView 控件可使用四种不同视图显示项目。通过此控件,可将项目组成带有或不带有列标头的列,并显示伴随的图标和文本。 可使用 ListView 控件将称作 ListItem 对象的列表条目组织成下列四种不同的视图之一:1.大(标准)图标2.小图标3.列表4.报表 View 属性决定在列表中控件使用何种视图显示项目。还可用 LabelWrap 属性控制列表中与项目关联的标签是否可换行显示。另外,还可管理列表中项目的排序方法和选定项目的外观。
- 2022-05-22 09:54:19下载
- 积分:1
-
Evito_Ball
android小游戏,迷宫小球,初学游戏编程的同学可以看一看(android games, maze ball, game programming beginner students can take a look)
- 2014-01-15 18:49:17下载
- 积分:1
-
HttpOptions
HTTP OPTIONS method Source Code for Andriod.
- 2013-11-11 09:40:24下载
- 积分:1
-
android 异步 执行 任务 例子 附讲解
Rules::The AsyncTask instance must be created in UI thread. .execute must be invoked on the UI thread.Never call objMyTask.onPreExecute(), objMyTask.doInBackground(), objMyTask.onProgressUpdate(), objMyTask.onPostExecute manually.The AsyncTask can be executed only once (an exception will be thrown if a second execution is attempted.)AsyncTask have Four Main Method... onPreExecute() doInBackground() onProgressUpdate() onPostExecute() onPreExecute-This method is called first when you start AsyncTask using objAsync.execute().And mostly this method is use for initializing dialog(ProgressDialog,CustomDialog) and showing. doInBackground-The main purpose of AsyncTask is accomplished by this method.Any non-UI thread process is running in this method.Such as Rss Feed Reader,Image and video Uploading and Downloading.You cant handle your View in this method.Because this method is non-UI thread.While any background process is running if you want to handle UI therea are onProgressUpdate method. after completion of process this method send result to OnPostExecute. onProgressUpdate-While backgrounding task is running ,you can handle your UI using this method .Such as status of downloading or uploading task.and this method is called from doInBackground.Using publishProgress() you can call onProgressUpdate method to update UI while process is running. onPostExecute -This method is called after the background computation finishes.The result of background process in passed in this method as parameters.And now you can dismiss progress dialog ,to indicate that background task is completed. You can cancel AsyncTask using objAsyncTask.cancel().then you just check in doInBackground, if (isCancelled()) { break; } else { //continue... } See this Image For more Clear.
- 2013-07-05下载
- 积分:1