모바일 프로그래밍/안드로이드7 Mockito Tutorial Mockito는 자바에서 단위테스트를 하기 위해 Mock을 만들어주는 프레임워크 https://static.javadoc.io/org.mockito/mockito-core/2.22.0/org/mockito/Mockito.html Mockito (Mockito 2.22.0 API) Use doCallRealMethod() when you want to call the real implementation of a method. As usual you are going to read the partial mock warning: Object oriented programming is more less tackling complexity by dividing the complexity into separate,.. 2019. 9. 24. FloatingActionButton Behavior 스크롤에 따른 위치 변화 코드 class FloatingActionBottomBehavior : CoordinatorLayout.Behavior{ constructor() : super() constructor(context: Context?, attrs: AttributeSet?) : super(context, attrs) override fun onStartNestedScroll( coordinatorLayout: CoordinatorLayout, child: View, directTargetChild: View, target: View, axes: Int, type: Int ): Boolean { return axes == ViewCompat.SCROLL_AXIS_VERTICAL || super.o.. 2019. 6. 14. RecyclerView Dummy Adapter RecyclerView Adapter 시험 할 때 자주 사용하는 코드 class MyRecyclerViewAdapter internal constructor(context: Context, private val mData: List) : RecyclerView.Adapter() { private val mInflater: LayoutInflater private var mClickListener: ItemClickListener? = null init { this.mInflater = LayoutInflater.from(context) } // inflates the row layout from xml when needed override fun onCreateViewHolder(parent: ViewG.. 2019. 6. 10. Android FCM https://firebase.google.com/docs/cloud-messaging/?hl=ko Firebase 클라우드 메시징 | Firebase Firebase 클라우드 메시징(FCM)은 무료로 메시지를 안정적으로 전송할 수 있는 교차 플랫폼 메시징 솔루션입니다. firebase.google.com 필요한 데이터 1. FCM 메시지 URL : https://fcm.googleapis.com/fcm/send 2. 서버 키 3. 전송할 단말의 토큰 단말에 코드 작성하여 토큰을 알 수 있음 /** * Called if InstanceID token is updated. This may occur if the security of * the previous token had been compromised.. 2019. 4. 22. 이전 1 2 다음