You will be fine

<Android> 0. Basic

by BFine
반응형

  • Manifest.xml
application 전체적인 파일을 관리

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name" // 프로젝트 이름
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity // 애플리케이션 화면 ---> 여러개 가질 수 있다 >그안에 여러 뷰(위젯) 포함된다(UI구성요소)
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

  • Hardcoded text 

    text에 그냥 한글이나 영어를 입력할 경우 발생하는 에러이다. 실행에는 문제가 없지만 text 내부 값들은 resources에 등록해서 사용해야 한다.

     

    res->strings.xml


     <string name="매핑명">텍스트 내용</string>  --> @string/매핑명



   

반응형

블로그의 정보

57개월 BackEnd

BFine

활동하기