<application>
android: icon = "@" // drawable 폴더나 minmap 폴더에 넣어주고 여기에 지정하면 앱의 아이콘이 변경된다.
android: label = "@string/app_name " // string.xml 파일에서 app_name 으로 이름을 지정해주면 된다.
android: thema ="@style/ ~~ " //style.xml 파일에서 색상을 지정해주면 된다.
android:
android:
<activity android: name="MainActivity">
<intent-filter> //얘가 위의 엑티비티를 메인엑티비티로써 활성화 되도록 해준다.
<action ~~~ MAIN>
<category ~~~~ LAUNCHER> // 메인이며 런쳐이다.
</intent-filter>
</activty>
</application>
'안드로이드' 카테고리의 다른 글
[9]Fragment에 대한 기본적인 고찰 (0) | 2020.04.16 |
---|---|
[8] Intent(3) - Intent보낼때 Class 통째로 실어 보내기. (0) | 2020.04.13 |
[6] Intent (1) - 인텐트 기본 (0) | 2020.04.13 |
[4]ListView (0) | 2020.04.10 |
[2]Toast Message (0) | 2020.04.09 |