<Android> 0. Basic
by BFine- Manifest.xml
<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/매핑명
'공부(2018~2019) - 스킨변경전 > Android' 카테고리의 다른 글
<Android> 5. ConstraintLayout, FrameLayout (0) | 2018.04.17 |
---|---|
<Android> 4. RelativeLayout,TableLayout, ScrollView (0) | 2018.04.17 |
<Android> 3. Gravity, Margin, Layout_weight (0) | 2018.04.10 |
<Android> 2. Gradle Scripts (0) | 2018.03.29 |
<Android> 1. Linerlayout (0) | 2018.03.28 |
블로그의 정보
57개월 BackEnd
BFine