일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- SQL
- Android
- plugin
- IntelliJ
- es6
- Eclipse
- SPC
- Java
- SSL
- Python
- Sqoop
- 보조정렬
- R
- NPM
- mybatis
- mapreduce
- window
- 공정능력
- Kotlin
- xPlatform
- table
- tomcat
- JavaScript
- hadoop
- react
- MSSQL
- vaadin
- Spring
- GIT
- Express
- Today
- Total
목록전체 글 (649)
DBILITY
ViewPager2를 사용해 fragement swape를 구현해 봤다. 핵심은 ViewPager2에 FragmentStateAdapter를 구현하는 것이다. PageAdapter.kt package com.example.myviewpager2fragment.adapter import androidx.fragment.app.Fragment import androidx.fragment.app.FragmentActivity import androidx.viewpager2.adapter.FragmentStateAdapter class PageAdapter(fragmentActivity: FragmentActivity, fragments: List) : FragmentStateAdapter(fragmentAct..
RecyclerView의 position이 화면 회전시 처음으로 돌아가버려서 테스트 함 Activity > FrameLayout > Fragment > RecyclerView 상태에서 Activity onCreate시 savedInstanceState가 null일때만 Fragment를 Programmatic 생성해야함 ListAdapter에 onAttachedToRecyclerView override해서 확인해보니 두번 실행되어 발견함...역시..초보는 어려워 Activity > FragmentContainerView일때는 별도 생성을 안하니 이상이 없었음. Activity > ViewPager2 > Fragment > RecyclerView인 경우는 어떻게 해야하지? Fragment가 사라짐 ViewP..
https://reqres.in/ Reqres - A hosted REST-API ready to respond to your AJAX requests Native JavaScript If you've already got your own application entities, ie. "products", you can send them in the endpoint URL, like so: var xhr = new XMLHttpRequest(); xhr.open("GET", "https://reqres.in/api/products/3", true); xhr.onload = function(){ conso reqres.in https://koreanjson.com/ Korean JSON { Korean J..
오류가 없는데도 Project Errors 탭에 오류가 있다고 나올때 file메뉴의 Invalid Caches에서 Invalidate and restart 하면 된다.
private val smoothScroller: SmoothScroller by lazy { object : LinearSmoothScroller(binding.root.context) { override fun getVerticalSnapPreference(): Int { return SNAP_TO_START } } } activityMainRecyclerView.apply { layoutManager = LinearLayoutManager(root.context) layoutManager?.apply { smoothScroller.targetPosition = viewModel.items.value.size-1 startSmoothScroll(smoothScroller) } itemAnimator ..