본문 바로가기

학교 & 학원 이론 수업/FPT 회사에서 배운 내용

Android (231023)

 

AndroidManifest.xml 파일 : The manifest file describes essential information about your app to the Android built tools, the Android operating system, and Google play. 

 

java 파일 : Contains the Java source code files, seperated by package names, including JUnit test code.

 

 

res 파일 : The res/values folder is used to store the value for the resources that are used in many Android projects to include features of color, styles, dimensions etc. 

 

Drawable : contains the different types of images used for the development of the application. We need to add all the images to the drawable folder for the application development 

 

mipmap 파일 : The mipmap folders are for placing your app/launcher icons(which are shown on the home screen) in only. Any other drawable assets you use should be placed in the relevant drawable folders as before. 

 

value.color 파일 : The colors.xml is an XML file which is used to store the colors for the resources. An Android project contains 3 essential colors namely : colorPrimary, colorPrimaryDark, colorAccent

 

value.strings 파일 : Basic function of the strings.xml is to define the strings in one file so that it is easy to use same string in different positions in the android project plus it makes the project looks less messy 

 

themes 파일 : Styles and themse on Android allow you to separate the details of your app design from the UI structure and behavior, similar to stylesheets in web design 

'학교 & 학원 이론 수업 > FPT 회사에서 배운 내용' 카테고리의 다른 글

Android(3)  (0) 2023.10.25
Android(2)- 231024  (0) 2023.10.24
231017 화요일 - java  (0) 2023.10.17
231016 월요일 - java  (0) 2023.10.16
디자인 패턴  (0) 2023.10.16