- Sencha Touch Cookbook
- Ajit Kumar
- 174字
- 2021-08-20 15:56:04
Conventions
In this book, you will find a number of styles of text that distinguish between different kinds of information. Here are some examples of these styles, and an explanation of their meaning.
Code words in text are shown as follows: "Copy phonegap.1.0.0.js
from your PhoneGap downloaded earlier to assets/www
."
A block of code is set as follows:
Ext.setup({ onReady: function() { if (Ext.is.Android) Ext.Msg.alert("INFO", "Welcome Android user!"); if (Ext.is.Blackberry) Ext.Msg.alert("INFO", "Welcome Blackberry user!"); if (Ext.is.iPad) Ext.Msg.alert("INFO", "Welcome iPad user!"); } });
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
layout: {
type: 'hbox',
direction: 'reverse'
}
New terms and important words are shown in bold. Words that you see on the screen, in menus or dialog boxes for example, appear in the text like this: " Launch Eclipse, click on the File menu, and select New | Android Project".
推薦閱讀
- 復雜軟件設計之道:領域驅動設計全面解析與實戰
- Java:Data Science Made Easy
- R的極客理想:工具篇
- 實戰Java高并發程序設計(第3版)
- SQL Server 2016數據庫應用與開發習題解答與上機指導
- JavaScript 程序設計案例教程
- Corona SDK Mobile Game Development:Beginner's Guide(Second Edition)
- 從零開始學C#
- 智能搜索和推薦系統:原理、算法與應用
- 搞定J2EE:Struts+Spring+Hibernate整合詳解與典型案例
- Spring+Spring MVC+MyBatis從零開始學
- Regression Analysis with Python
- 計算機應用基礎(第二版)
- Java EE 7 Development with WildFly
- 軟件開發中的決策:權衡與取舍