登录
首页 » Android » 第一行代码第2 版pdf 及源码

第一行代码第2 版pdf 及源码

于 2022-04-08 发布 文件大小:22.93 MB
0 218
下载积分: 2 下载次数: 2

代码说明:

《第一行代码——Android》是Android初学者的最佳入门书。全书由浅入深、系统全面地讲解了Android软件开发的方方面面。第1章带领你搭建Android开发环境,完成你的第一个Android程序。第2章至第13章完整地讲解了Android开发中的各种基本知识和关键技术,包括四大组件、UI、碎片、广播机制、数据存储、服务、多媒体、网络、定位服务、传感器,以及分布式版本控制系统Git的使用等等。在部分章节会穿插相关技术的高级使用技巧。第14章和第15章则将带领你编写一个完整的项目,教会你如何打包、上架、嵌入广告并获得盈利。《第一行代码——Android》内容通俗易懂,既适合初学者循序渐进地阅读,也可作为一本参考手册,随时查阅。

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

发表评论

0 个回复

  • 运动控制核心源码 STM32H7 C语言
    STM32H7 运动控制源码 通过双DMA实现带脉冲输出 8个轴插补运算能够达到500K 3轴可以达到1M的输出频率 并且带加减速控制 这个源码是运动控制的核心源码之一 网上几乎没有 发布出来和大家分享 【核心代码】
    2021-07-22 00:33:13下载
    积分:1
  • 视屏录制demo,可以支持usb
    android-eye =========== Change your android phone to a surveillance security camera. ## Download ## You can download binrary from Google Play:  https://play.google.com/store/apps/details?id=teaonly.droideye  ## Specifications ## * Streaming    * Build-in web service, you can see the video via browser in pc and another phone, a modem browser with HTML5 is reauired.   * H.264 video and G.726 audio   * Streaming via websocket between browser and android phone.   * Decoding H.264 and G.726 in pure Javascript * Smart   * Support motion detecting (doing)   * Support advanced vision algorithms (doing)   * Publishing alarm messages to SNS (not ready)     * Access over internet   * This app don"t support internet, you can try my another ap
    2022-11-06 02:50:03下载
    积分:1
  • AndroidCharacterTest
    Android Character Test for Linux.
    2014-06-19 10:18:53下载
    积分:1
  • 自己开发的Android 直接发送短信方法附上代码
    这是一个自己开发的Android 直接发送短信方法附上代码,Android 发短信功能,包括了对内容合法性的验证,发送完成弹出提示。自己开发的直接发送短信的方法:   private void sendSMS(String telNo,String smsStr,View v){    PendingIntent pi=    PendingIntent.getActivity(this, 0, new Intent(this,Sample_11_1.class), 0);    SmsManager sms=SmsManager.getDefault();    sms.sendTextMessage(telNo, null, smsStr, pi, null);    //短信发送成功给予提示    Toast.makeText(    Sample_11_1.this, //上下文    "恭喜你,短信发送成功!", //提示内容    5000 //信息显示时间    ).show();    v.setEnabled(true);//短信发送完成后恢复发送按钮的可用状态   }   对手机号码和短信内容的验证部分:   //获取输入的电话号码   EditText etTel=(EditText)findViewById(R.id.EditText02);   String telStr=etTel.getText().toString();   //获取输入的短信内容   EditText etSms=(EditText)findViewById(R.id.EditText01);   String smsStr=etSms.getText().toString();   //判断号码字符串是否合法   if(PhoneNumberUtils.isGlobalPhoneNumber(telStr)){//合法则发送短信    v.setEnabled(false);//短信发送完成前将发送按钮设置为不可用    sendSMS(telStr,smsStr,v);   }   else{//不合法则提示    Toast.makeText(    Sample_11_1.this, //上下文    "电话号码不符合格式!!!
    2022-08-23 23:05:12下载
    积分:1
  • pedometer
    开源Android项目计步器源码,打开软件后,手握手机,可根据你走路时胳膊摆的次数准确测试出你走了多少步,有意思吧,而且这个项目的源码是开源的,分iPhone版和Android版,此为android版的pedometer源代码,有条件的可重新编译运行一下。(Open-source Android project pedometer source, open the software, hand phone, according to the swing arm when you walk out the number of accurately test how many steps you take, it is interesting, and this project' s source code is open source, and the iPhone version of Android version, this version of the pedometer for android source code, conditions can be recompiled to run it.)
    2013-06-06 16:07:19下载
    积分:1
  • 手机接收pc摄像头视频(含pc端程序)
    手机接收pc摄像头视频
    2015-04-02下载
    积分:1
  • android中常用的一些工具类
    android中常用的一些工具类,比如对时间的处理 对字符串的处理,以及第三方的一些优秀的库
    2023-05-10 10:45:03下载
    积分:1
  • SimpleReader-second
    安卓聚合阅读器源码是一套基于安卓的RSS阅读器项目源码。内置三张壁纸,换肤功能。项目已经内置了很多RSS源,并且进行了分类。显示模式有白天、夜间两种显示模式。项目文章显示使用的自定义字体,项目本身内置收藏和分享功能,可以分享到QQ空间、新浪微博、腾讯微博、人人和豆瓣。只是暂时不能自定义添加RSS源,相关功能模块正在开发中。(Android aggregation reader source is a set of Android based RSS reader project source. Three built-in wallpaper, skin function. Project has built a lot of RSS source, and carried out a classification. Display mode has two kinds of display modes during the day and night. Project articles show that the use of custom fonts, the project itself in the collection and sharing functions, you can share to QQ space, micro-blog Sina, Tencent micro-blog, everyone and broad bean. Just temporarily can not be customized to add RSS source, the relevant functional modules are being developed.)
    2016-07-08 13:17:51下载
    积分:1
  • android listview 异步加载网络图片示例源码下载(亲测通过,不卡)
    listview 异步加载网络图片,支持拖动下一页,不卡
    2014-04-13下载
    积分:1
  • Android-andbook
    Android编程入门教程andbook中文版(this book is fit for the beginners)
    2015-11-15 15:35:33下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载