일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- Android Java
- 안드로이드 앱 만들기
- 안드로이드 코딩 기초
- 코딩
- 안드로이드 튜토리얼
- Android Studio
- android example
- 안드로이드 예제
- Android
- 앱 만들기
- 자바
- hongdroid
- android tutorial
- 안드로이드 네비게이션 메뉴
- 앱 만드는 법
- 플러터
- 안드로이드 스튜디오
- 자바 튜토리얼
- 홍드로이드 강의
- java
- 안드로이드 서비스
- 안드로이드
- 개발자
- 홍드로이드
- flutter
- 개발강의
- android studio 앱 만드는 법
- IOS
- 코틀린
- 안드로이드 기초
- Today
- Total
목록안드로이드 기초 (7)
홍드로이드의 야매코딩
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 Colored by Color Scriptercs
최근 androidx 라는 새로운 지원 라이브러리가 출시하여서 안드로이드 스튜디오 최신버전을 쓰는 구독자 여러분들께서 제 예제를 올바르게 구현하였는데도 빈번하게 에러가 나실 수 있습니다. 왜냐하면 최신버전 안드로이드 스튜디오 에서는 new project로 만들 시 androidx 지원 라이브러리가 기본적으로 체크박스 되어있기 때문입니다. 예제마다 오류가 발생하게되면 최대한 androidx 에 맞춰서 예제영상 고정댓글란에 에러대응법을 찾아서 적도록 하겠습니다. 2019년 즈음 이후의 여러분들께서는 저의 예제가 support 라이브러리를 이용하여 구현했기때문에androidx 마이그레이션 방법을 공부해두시길 부탁드립니다.for example ) import android.support.v7.app.AppCom..
123456789101112131415161718192021222324252627282930313233343536373839404142434445 Colored by Color Scriptercs
12345678910111213141516171819202122 Colored by Color Scriptercs 1234567891011121314151617181920212223 Colored by Color Scriptercs 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455package com.example.comebackexample; import android.content.Intent;import android.support.annotation.Nu..
123456789101112131415161718192021222324252627282930313233apply plugin: 'com.android.application' android { compileSdkVersion 28 defaultConfig { applicationId "com.example.googlemapexample" minSdkVersion 15 targetSdkVersion 28 versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled fal..
12345678910111213141516171819202122232425262728// Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories { google() jcenter() } dependencies { classpath 'com.android.tools.build:gradle:3.1.2' classpath 'com.google.gms:google-services:3.1.0' // NOTE: Do not place your application dependencies here; they belong // in the individu..
[AndroidManifest.xml] 1234567891011121314151617181920212223 Colored by Color Scriptercs [activity_main.xml] 1234567891011121314 Colored by Color Scriptercs [MainActivity.java] 123456789101112131415161718192021222324252627282930313233343536373839404142434445package com.example.webviewexample; import android.support.v7.app.AppCompatActivity;import android.os.Bundle;import android.view.KeyEvent;imp..