- Learning Android Google Maps
- Raj Amal W.
- 199字
- 2021-07-09 21:54:25
Conventions
In this book, you will find a number of text styles that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning.
Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "Now, extract the downloaded ZIP package and run the eclipse.exe
executable."
A block of code is set as follows:
dependencies { compile 'com.google.android.gms:play-services:7.5.0' compile 'com.android.support:appcompat-v7:21.0.3' }
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
if(db.getMarkerCount() > 0){
List<Marker> markerList = db.getAllMarkers();
for (int i = 0; i < db.getMarkerCount(); i++) {
Marker mkr = markerList.get(i);
Any command-line input or output is written as follows:
sudo dpkg --add-architecture i386 sudo apt-get update
New terms and important words are shown in bold. Words that you see on the screen, for example, in menus or dialog boxes, appear in the text like this: "Now, check the Developer Tools box and select Next."
- 軟件安全技術(shù)
- 深入核心的敏捷開發(fā):ThoughtWorks五大關(guān)鍵實踐
- Java程序設計(慕課版)
- Azure IoT Development Cookbook
- C/C++算法從菜鳥到達人
- Python機器學習:手把手教你掌握150個精彩案例(微課視頻版)
- Python深度學習原理、算法與案例
- jQuery for Designers Beginner's Guide Second Edition
- 并行編程方法與優(yōu)化實踐
- Web前端測試與集成:Jasmine/Selenium/Protractor/Jenkins的最佳實踐
- 少兒編程輕松學(全2冊)
- Hadoop Blueprints
- Leaflet.js Essentials
- 新手學ASP.NET 3.5網(wǎng)絡開發(fā)
- GO語言編程從入門到實踐