본문 바로가기
728x90

Android53

[android] tab과 fragment 사용 안드로이드 탭 클릭시에 fragment를 사용하여 화면전환을 하도록 처리하였다. 그런데 화면에서 검색기능 호출 후 다시 돌아올 경우 replace만 사용하여 화면을 전환효과를 주었더니 이전 화면의 잔상처럼 2개의 화면이 겹치는 오류가 발생하였다. 잘못 만들었다. 다시 탭 구성을 하였다. 기존 코드에서 //각 fragment 페이지 초기화 fragment1 = new fragment1(); fragment2 = new fragment2(); fragment3 = new fragment3(); //tab setting getSupportFragmentManager().beginTransaction().add(R.id.container, fragment1).commit(); //화면 전환시 getSupport.. 2022. 4. 3.
android design 라이브러리 추가시 오류 implementation 'com.android.support:design:28.0.0' 위와같이 입력하였는데, 에러가 나온다. com.android.support:design:28.0.0 경로는 com.google.android.material:material:1.0.0-rc01 위의 경로로 변경되었다. 2022. 3. 12.
[Hyper casual game]Hurry Up Penguin! Funny Game. https://play.google.com/store/apps/details?id=com.textbox.hurryuppenguin Hurry Up Penguin - Google Play 앱 엄마 펭귄이 아기 펭귄을 만나러 가는 게임입니다. play.google.com It is a game in which the mother penguin goes to meet the baby penguin. Tap the screen to make the penguin move. It's a penguin walk, so it's very slow. If you want to speed up, try sliding by eating fish. It will be faster. https://play.google.com.. 2022. 2. 17.
[Unity] Not starting debugger since process cannot load the jdwp agent. 에러. error. Error .hurryuppengui Not starting debugger since process cannot load the jdwp agent. 유니티 에디터에서 디버깅시에는 잘 동작하였는데 폰에서 빌드 실행시에 위와 같은 오류가 나타났다. 에디터에서는 저장이 잘 되다가 안드로이드폰에서만 저장이 안되는 오류가 발생해서 이녀석때문에 해당 오류도 같이 나는 줄 알았더니 아니였다;;;; 다른오류였다. 어야튼 저 오류는 간단히 처리 완료 되었다. assets > External Dependency Manager > Android Resolver > Force Resolve로 안드로이드 Plug IN data 들을 정리하고 나니 정상동작을 하였다. 앱 개발을 계속 진행하다보니 지속적으로 해당 에러가 나타났.. 2022. 2. 15.
[Android]Paper Airplane hyper casual Game. google play game. https://play.google.com/store/apps/details?id=com.textbox.paperairplane Paper Airplane hyper casual - Google Play 앱 종이비행기를 멀리 날려버리자. play.google.com A fun hyper-casual game Let's blow a paper airplane far away. The paper airplane can be moved by clicking the air pump. You have to fly while avoiding various obstacles such as buildings, planes, and birds. You can get out of danger by using the gus.. 2022. 2. 12.
[android] 실행오류. version 31에서 앱 실행시 오류 java.lang.IllegalArgumentException: : Targeting S+ (version 31 and above) requires that one of FLAG_IMMUTABLE or FLAG_MUTABLE be specified when creating a PendingIntent. Strongly consider using FLAG_IMMUTABLE, only use FLAG_MUTABLE if some functionality depends on the PendingIntent being mutable, e.g. if it needs to be used with inline replies or bubbles. at android.app.PendingIntent.checkFlags(.. 2022. 2. 8.
728x90