| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 | 29 |
| 30 |
- C#크롤링
- Spring
- HTTP
- 국제화
- MVC
- AndroidStudio
- react
- mybatis
- egov
- 쿼리
- 콜백
- SQL
- node.js
- jsx
- Callback
- fullcalendar
- 서드파티모듈
- JavaScript
- c:choose
- JSTL
- 동적쿼리
- iBATIS
- c:forEach
- RequestMethod.POST
- android
- Java
- MySQL
- NPM
- jQuery
- vscode
- Today
- Total
목록Android Sudio (6)
Today Yewon Learned
1) res폴더 안에 font 폴더 생성 2. Typeface 선언 private TextView tv1; Typeface typeface = getResources().getFont(R.font.lgsmartuilight); tv1.setTypeface(typeface); [참고] https://developer.android.com/reference/android/graphics/Typeface Typeface | Android Developers developer.android.com
드롭다운을 이용해 select 옵션을 사용해야 하는 경우가 생겨, Android Spinner를 구현하였다. Spinner 스피너는 값 집합에서 하나의 값을 선택할 수 있는 빠른 방법을 제공한다. array.xml 파일 생성 activity_main.xml Spinner 객체를 사용하여 레이아웃에 스피너 추가 MainActivity.java public class MainActivity extends AppCompatActivity { private Spinner spinner; private TextView tv_result; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); ..
RecyclerView 란? RecyclerView란 이미지나 텍스트를 리스트화해서 스크롤하며 볼 수 있게 해주는 컨테이너다. - 기존에 사용하던 ListView 와 비슷하지만, 정확히는 ListView 의 확장판 개념이며, 대부분 RecyclerView로 대체된 상태 - RecyclerView는 ListView보다 향상된 성능 제공 - Adapter의 ViewHolder를 이용 * ViewHolder를 사용하는 이유는? 맨 처음 화면에 보이는 뷰 객체를 홀딩(기억)하고 있어야 함 build.gradle (:app) dependencies { implementation "androidx.recyclerview:recyclerview:1.2.1" } activity_main.xml activity_recy..
Android Studio App Build시, 아래와 같은 메세지가 뜨며 오류가 발생하였다. One or more issues found when checking AAR metadata values: The minCompileSdk (31) specified in a dependency's AAR metadata (META-INF/com/android/build/gradle/aar-metadata.properties) is greater than this module's compileSdkVersion (android-30). Dependency: androidx.appcompat:appcompat:1.4.2. AAR metadata file: C:\Users\user\.gradle\caches\tra..
Android Studio App 실행 시 아래와 같은 오류 메세지가 뜨며 오류가 발생하였다. The RepositoryHandler.jcenter() method has been deprecated. This is scheduled to be removed in Gradle 8.0. JFrog announced JCenter's shutdown in February 2021. Use mavenCentral() instead. Consult the upgrading guide for further information: https://docs.gradle.org/7.0.2/userguide/upgrading_version_6.html#jcenter_deprecation → The RepositoryHan..
Android Studio Emulator를 실행하기 위해, AVD Manager를 실행하였으나, 아래와 같은 경고창이 떴다. intel haxm is required to run this AVD. haxm is not installed. Install Intel HAXM for better emulation performance. 인텔 haxm이 설치되지 않아 실행이 되지 않는다는 것 의미 같았다. [1] Intel HAXM 수동으로 설치 https://mindorizip.tistory.com/72 [Intel HAXM] 수동으로 설치하기 Intel HAXM은 무엇인가? Intel HAXM(Intel Hardware Accelerated Execution Manager, 인텔 하드웨어 가속 실행 관리자..