Programing Language
-
iOS)인앱결제 추가 (참고자료)Programing Language/iOS(Swift) 2020. 12. 5. 17:42
nicgoon.tistory.com/205 iOS in-app purchase iOS 결제 모듈을 사용하려면, Provisioning Profile이 있어야 합니다. 선행작업. 프로비저닝 프로파일 및 푸쉬 인증서 생성 : https://nicgoon.tistory.com/202 . 공식 문서. StoreKit : https://developer.app.. nicgoon.tistory.com devmjun.github.io/archive/purchase-1 Swift. In-app Purchase(non-consumable)에 대해서 알아봅니다 devmjun.github.io
-
Android) 안드로이드에서 점선 긋기Programing Language/Android Studio(Java&Kotlin) 2020. 12. 4. 13:43
안드로이드 개발을 할 때 점선이 필요한 경우가 있습니다. 아래는 xml 파일에서 점선을 그리는 코드 입니다. 여기서 주의해야할 사항이 2개 있습니다. 1, layerType 을 software 롤 설정해야 점선이 보입니다. 2. layout_height 값은 점선의 width 보다 큰 값으로 정해야 합니다. wrap_content 도 점선이 안보입니다. 이제 위 코드에 대한 자세한 설명을 해보겠습니다. 먼저 코드를 실행하면 아래와 같은 점선이 나옵니다. 여기서 color 는 점선의 색을 나타냅니다. 현재 위 코드는 노랑색을 나타내는 값입니다. width 는 선의 두께로 이를 30dp 로 설정 하면 간격은 그대로이지만 두께가 더욱 커집니다. dashWidth 는 색칠되어 있는 점선의 길이 입니다. 이를 3..
-
Python) Flask+Gunicorn+Nginx 설치 (참고 자료)Programing Language/Python 2020. 12. 2. 01:25
www.digitalocean.com/community/tutorials/how-to-serve-flask-applications-with-gunicorn-and-nginx-on-ubuntu-18-04 How To Serve Flask Applications with Gunicorn and Nginx on Ubuntu | DigitalOcean In this guide, you will build a Python application using the Flask microframework on Ubuntu 18.04. The bulk of this article will be about how to set up the Gunicorn application server and how to launch th..
-
Android) Custom Dialog배경에 Radius 넣기Programing Language/Android Studio(Java&Kotlin) 2020. 12. 1. 23:50
stackoverflow.com/a/28937224 How to make custom dialog with rounded corners in android What I am trying to do: I am trying to make a custom dialog in android With rounded corners. What is happening: I am able to make custom dialog but it doesn't have rounded corners. I tried adding a stackoverflow.com
-
Android) Activity에서 Fragment로 데이터 전송하기Programing Language/Android Studio(Java&Kotlin) 2020. 11. 28. 00:19
stackoverflow.com/a/51745044 Pass data from Activity to Fragment that is already displayed How do you pass a data from activity to fragment that's already active? I can transfer using a bundle but the only way I can get it is using createView on that fragment but my problem is it is alre... stackoverflow.com