• <em id="pai5d"></em><sup id="pai5d"></sup>
    
    

    <small id="pai5d"><rp id="pai5d"></rp></small>
    <option id="pai5d"></option>

    
    
  • <sup id="pai5d"></sup>
    <em id="pai5d"><label id="pai5d"></label></em>

  • <s id="pai5d"></s>
    當前位置 : 首頁(yè)  圖書(shū) 正文

    Android編程經(jīng)典案例解析 英文版簡(jiǎn)介,目錄書(shū)摘

    2020-01-10 11:35 來(lái)源:京東 作者:京東
    android編程
    Android編程經(jīng)典案例解析 英文版
    暫無(wú)報價(jià)
    3評論 100%好評
    編輯推薦:  在作者編寫(xiě)的暢銷(xiāo)中文版教材《Android編程經(jīng)典案例解析》基礎上翻譯而成。
      既是一快而廣的Android編程技能提高書(shū),又能幫助讀者提高英語(yǔ)水平。
      全書(shū)詳細分析17個(gè)典型的Android實(shí)用案例,如簡(jiǎn)易計算器、天氣預報、音樂(lè )播放器、景點(diǎn)宣傳、新聞播放等。這些案例稍加修改即可直接用于自己的項目中。
      圖解分析、代碼展示、通俗易懂;案例貼近生活,實(shí)踐性強;內容由淺入深,知識融會(huì )貫通,提升綜合運用能力;涉及知識面廣,可參考性強。還總結了常見(jiàn)Android錯誤與程序調試方法、編程測試題庫。
    內容簡(jiǎn)介:  全書(shū)的17個(gè)Android編程案例,包括TextView特效、手機屏幕區域劃分、我的課表、閃爍霓虹燈、簡(jiǎn)易計算器設計、頁(yè)面滑動(dòng)切換效果、圖片定時(shí)滑動(dòng)播放效果、搜索關(guān)鍵字提示、仿畫(huà)廊視圖效果、城市景點(diǎn)介紹、高校新聞等。為引導讀者理解、掌握和靈活運用,編者通過(guò)圖解分析、代碼展示、技術(shù)剖析,由淺入深融會(huì )貫通。書(shū)中的例子稍加改動(dòng)就可直接應用于實(shí)際的項目中。與本書(shū)配套的中文版教材經(jīng)幾千人試用,學(xué)習效果不錯。本書(shū)既可用作國內大學(xué)國際班的Android或Java類(lèi)實(shí)踐課程教材,也可供希望從事國際APP項目開(kāi)發(fā)的程序員自學(xué)參考。掌握本書(shū)內容,計算機、軟件工程專(zhuān)業(yè)的學(xué)生的就業(yè)機會(huì )將會(huì )大大增加。
    目錄:Contents
    Chapter 1  Special TextView Effects???>>>1
    1.1  Case Overview 1
    1.2  Key Code 1
    1.3  Code Analysis 3
    1.3.1  The effect of scrolling text in the TextView 3
    1.3.2  Display various colors in the same text 4
    1.3.3  Set picture orientation 4
    1.3.4  Automatic link 5
    1.4  Expansion of Knowledge 5
    1.4.1  The difference between android: gravity and android: layout_gravity 5
    1.4.2  The difference between android: padding and android:
    ?????layout_margin 6
    1.4.3  The representation of color in Android 6
    1.5  Thinking and Exercises 7
    Chapter 2  Phone Screen Division???>>>8
    2.1  Case Overview 8
    2.2  Key Code 8
    2.3  Code Analysis 10
    2.3.1  LinearLayout 10
    2.3.2  Proportionally split screen 10
    2.4  Extension of Knowledge 11
    2.5  Thinking and Exercises 11
    Chapter 3  My Course Table-TableLayout???>>>13
    3.1  Case Overview 13
    3.2  Key Code 13
    3.3  Code Analysis 16
    3.3.1  Class schedule interface analysis 16
    3.3.2  TableLayout 17
    3.3.3  Add borders to TextView 18
    3.3.4  Definition of style 18
    3.4  Expansion of Knowledge 19
    3.5  Thinking and Exercises 19
    Chapter 4  Images Around Text—RelativeLayout???>>>21
    4.1  Case Overview 21
    4.2  Key Code 21
    4.3  Code Analysis 23
    4.3.1  Interface analysis 23
    4.3.2  RelativeLayout 23
    4.4  Extension of Knowledge 24
    4.5  Thinking and Practice 25
    Chapter 5  Flashing Neon—FrameLayout???>>>26
    5.1  Case Overview 26
    5.2  Key Code 26
    5.3  Code Analysis 29
    5.3.1  Interface analysis 29
    5.3.2  FrameLayout 29
    5.3.3  The timer 29
    5.3.4  Handler message passing 30
    5.4  Extension of Knowledge 31
    5.5  Thinking and Practice 31
    Chapter 6  Design Calculator—Use Multiple Layout???>>>32
    6.1  Case Overview 32
    6.2  Key Code 32
    6.3  Code Analysis 36
    6.3.1  Interface analysis 36
    6.3.2  Define style 37
    6.4  Extension of Knowledge 37
    6.5  Thinking and Practice 40
    Chapter 7  Page Slide Show???>>>41
    7.1  Case Overview 41
    7.2  Key Code 42
    7.3  Code Analysis 52
    7.3.1  Interface analysis 52
    7.3.2  ViewPager 52
    7.4  Expansion of Knowledge 53
    7.4.1  Event handler based on listening 53
    7.4.2  Page full screen 55
    7.5  Thinking and Exercises 56
    Chapter 8  Images Switch Automatically???>>>57
    8.1  Case Overview 57
    8.2  Key Code 57
    8.3  Code Analysis 63
    8.3.1  Interface analysis 63
    8.3.2  Custom MyImageTopView widget 63
    8.4  Expansion of Knowledge 65
    8.4.1  Custom widget 65
    8.4.2  Gesture Detection 65
    8.5  Thinking and Exercises 66
    Chapter 9  Keyword Search Tips???>>>67
    9.1  Case Overview 67
    9.2  Key Code 67
    9.3  Code Analysis 70
    9.3.1  Smart tips to complete the input 70
    9.3.2  Intelligent update the data source 71
    9.4  Extension of Knowledge 72
    9.4.1  ArrayAdapter 72
    9.4.2  Dialog 72
    9.5  Thinking and Exercises 73
    Chapter 10  Simulate Gallery???>>>75
    10.1  Case Overview 75
    10.2  Key Code 76
    10.3  Code Analysis 78
    10.3.1  Interface analysis 78
    10.3.2  ImageSwitcher introduction 79
    10.4  Expansion of Knowledge 80
    10.5  Thinking and Exercises 80
    Chapter 11  Android Books List???>>>82
    11.1  Case Overview 82
    11.2  Key Code 82
    11.3  Code Analysis 88
    11.3.1  Interface analysis 88
    11.3.2  ListView 89
    11.3.3  SimpleAdapter 90
    11.3.4  ClipDrawable 91
    11.4  Extension of Knowledge 92
    11.4.1  The raw directory 92
    11.4.2  Activity overview 93
    11.5  Thinking and Practice 94
    Chapter 12  BBC News—ListView Delay Load???>>>96
    12.1  Case Overview 96
    12.2  Key Code 97
    12.3  Code Analysis 102
    12.3.1  ListView lazy loading principle 102
    12.3.2  Introduction of SQLite database 103
    12.4  Extension of Knowledge 107
    12.5  Thinking and Exercises 107
    Chapter 13  BBC News—Drop Down Refresh ListView???>>>109
    13.1  Case Overview 109
    13.2  Key Code 110
    13.3  Code Analysis 119
    13.4  Extension of Knowledge 121
    13.5  Thinking and Exercises 121
    Chapter 14  ExpandableListView Widget???>>>122
    14.1  Case Overview 122
    14.2  Key Code 122
    14.3  Code Analysis 125
    14.4  Extension of Knowledge 126
    14.5  Thinking and Practice 129
    Chapter 15  Product Category —Custom Multi-level List???>>>130
    15.1  Case Overview 130
    15.2  Key Code 131
    15.3  Code Analysis 137
    15.4  Extension of Knowledge 138
    15.5  Thinking and Exercises 144
    Chapter 16  College Introduction—TabHost???>>>145
    16.1  Case Overview 145
    16.2  Key Code 145
    16.3  Code Analysis 153
    16.3.1  TabHost introduction 153
    16.3.2  Fragment introduction 155
    16.3.3  Change the picture according to state 156
    16.4  Extension of Knowledge 157
    16.4.1  Communicating with the activity 157
    16.4.2  Switch page through ActionBar 161
    16.5  Thinking and Exercises 163
    Chapter 17  The Sound of Music—Music Player???>>>164
    17.1  Case Overview 164
    17.2  Key Code 165
    17.3  Code Analysis 198
    17.3.1  Main functions of music player 198
    17.3.2  ContentProvider 200
    17.3.3  Service 201
    17.3.4  BroadcastReceiver 203
    17.4  Extension of Knowledge 205
    17.4.1  MediaPlayer 205
    17.4.2  Notifications 209
    17.5  Thinking and Exercises 210
    Appendix A  The Common Errors and Debugging Methods???>>>212
    Appendix B  The Knowledge of Android Programming???>>>221
    Appendix C  The Practice of Android Programming???>>>234
    Appendix D  The Informal Test of Android Programming???>>>242
    熱門(mén)推薦文章
    相關(guān)優(yōu)評榜
    品類(lèi)齊全,輕松購物 多倉直發(fā),極速配送 正品行貨,精致服務(wù) 天天低價(jià),暢選無(wú)憂(yōu)
    購物指南
    購物流程
    會(huì )員介紹
    生活旅行/團購
    常見(jiàn)問(wèn)題
    大家電
    聯(lián)系客服
    配送方式
    上門(mén)自提
    211限時(shí)達
    配送服務(wù)查詢(xún)
    配送費收取標準
    海外配送
    支付方式
    貨到付款
    在線(xiàn)支付
    分期付款
    郵局匯款
    公司轉賬
    售后服務(wù)
    售后政策
    價(jià)格保護
    退款說(shuō)明
    返修/退換貨
    取消訂單
    特色服務(wù)
    奪寶島
    DIY裝機
    延保服務(wù)
    京東E卡
    京東通信
    京東JD+
    亚洲精品乱码久久久97_国产伦子一区二区三区_久久99精品久久久欧美_天天看片永久av影城网页
  • <em id="pai5d"></em><sup id="pai5d"></sup>
    
    

    <small id="pai5d"><rp id="pai5d"></rp></small>
    <option id="pai5d"></option>

    
    
  • <sup id="pai5d"></sup>
    <em id="pai5d"><label id="pai5d"></label></em>

  • <s id="pai5d"></s>