- Android Application Development with Maven
- Patroklos Papapetrou Jonathan LALOU
- 207字
- 2021-07-23 20:06:08
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: "A folder target
containing a chapter1.apk
archive should be created."
A block of code is set as follows:
public class BookServiceImpl implements BookService { @Override public Book createBook(String title, String format, String color, Integer numberOfPages) { final Book book = new Book(); book.setTitle(title); book.setFormat(format); book.setColor(color); book.setNumberOfPages(numberOfPages); return book; } }
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>contract</artifactId>
<version>1.0-SNAPSHOT</version>
<type>pom</type>
</dependency>
Any command-line input or output is written as follows:
$ANDROID_HOME//tools/android move avd --name Nexus_7_2012 --rename Nexus_7_2012_bis
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: "Clicking the Next button moves you to the next screen."
- LabVIEW 2018 虛擬儀器程序設計
- Android項目開發入門教程
- Building Modern Web Applications Using Angular
- 造個小程序:與微信一起干件正經事兒
- Python從入門到精通(精粹版)
- HTML5游戲開發案例教程
- Python機器學習:手把手教你掌握150個精彩案例(微課視頻版)
- Python時間序列預測
- Haxe Game Development Essentials
- 零基礎學C語言(升級版)
- 計算機應用基礎(第二版)
- Visual C++程序設計與項目實踐
- HTML5游戲開發實戰
- Java Web開發教程:基于Struts2+Hibernate+Spring
- 計算機程序的構造和解釋(JavaScript版)