登录
首页 » Java » android TabActivityExample(TabActivity示例)示例源码

android TabActivityExample(TabActivity示例)示例源码

于 2014-03-16 发布
0 186
下载积分: 1 下载次数: 0

代码说明:

android TabActivityExample(TabActivity示例)示例源码

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • android 百度地图定位 实例源码
    android 百度地图定位 实例源码
    2014-06-12下载
    积分:1
  • android 百度定位实例
    简单定位
    2015-06-23下载
    积分:1
  • android 仿微信即时聊天 XMPP 实例源码下载
    android 仿微信即时聊天 XMPP 实例源码下载
    2014-08-25下载
    积分:1
  • android 语音识别例子源码下载
    android 语音识别例子源码下载
    2015-04-30下载
    积分:1
  • 安卓flv视频播放器例子源码下载
    安卓视频播放器,选择视频即可播放
    2015-03-26下载
    积分:1
  • andriod 仓库管理 毕业设计
    本项目是一个仓库管理的安卓毕业设计项目源码,已升级到 andriod studio 3.5 只是初步了实现了单机的仓库管理操作,可以对商品、客户、供应商信息进行简单的增删改查,也可以简单的进行库存管理,在实用性方面做的比较差强人意,不过可以修改一下作为自己的毕业设计。本项目包括安卓客户端源码、一个26页的毕设报告、一个开题报告,本项目是一个简单的安卓仓库管理系统模型,不要指望有多高的实际应用性。不过应付一般的本科专科水平的毕业设计完全没有问题。编译版本2.3.3编码GBK,源码有简单的注释。也可以作为安卓新手练习SQLite使用的例子。管理员默认用户名密码都是javaapk
    2019-09-15下载
    积分:1
  • 实现android相册网格和gallery功能 实例源码下载
    实现android相册网格和gallery功能 实例源码下载
    2015-03-17下载
    积分:1
  • android 刮刮乐效果 实例源码下载
    android 刮刮乐效果 实例源码下载
    2014-09-20下载
    积分:1
  • android 获取联系人信息 例子源码下载
    android手机的通讯录联系人全部都存在系统的数据库中,如果须要获得通讯里联系人的信息就须要访问系统的数据库,才能将信息拿出来。 这一篇文章我主要带领同学们熟悉Android的通讯录机制。
    2015-04-14下载
    积分: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
  • 696516资源总数
  • 106914会员总数
  • 0今日下载