import androidx.room.Entity import androidx.room.PrimaryKey import com.google.gson.annotations.SerializedName @Entity data class Person( @PrimaryKey @SerializedName("name") val name: String, @SerializedName("age") val age: Int, @SerializedName("address") val address: String ) PrimaryKey 설정 가능. @PrimaryKey(autoGenerate = true) : 변수가 Int 형 일 경우 자동 생성 가능. import androidx.room.* import com.example.r..
ViewPager 의 Wrap Content 를 적용하기 위함. 페이지마다 높이값이 다를 경우 ( 그 전 페이지 보다 지금 페이지가 높이가 더 높을 경우 ) 높이가 바뀜. 약간의 Custom 이 필요. class WrapViewPager(context: Context) : ViewPager(context) { override fun onMeasure(widthMeasureSpec: Int, heightMeasureSpec: Int) { var heightMeasureSpec = heightMeasureSpec val mode = MeasureSpec.getMode(heightMeasureSpec) if (mode == MeasureSpec.UNSPECIFIED || mode == MeasureSpec.A..
https://jihunstudy.tistory.com/20?category=807405 기본적인 DrawerLayout 에서 + 전체 화면 + RecyclerView 가로 스크롤 Intercept 조건. cs class MenuView @JvmOverloads constructor ( context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0) : LinearLayout(context, attrs, defStyleAttr) { init { LayoutInflater.from(context).inflate(R.layout.view_menu, this, true) setList() } private fun setList() { list.lay..
1234public interface ItemTouchHelperListener { void onItemMove(int fromPosition, int toPosition); void onItemDismiss(int position);}Colored by Color Scriptercs 1234567891011121314151617181920212223242526272829303132333435363738394041public class SwipeController extends ItemTouchHelper.Callback { private ItemTouchHelperListener itemTouchHelperListener; public SwipeController(ItemTouchHelperListen..
- Total
- Today
- Yesterday
- Android Wear Os
- 안드로이드 플립 대응
- widget onupdate
- 갤럭시 워치
- Android
- 폴더블 상태 유지
- 랜덤컬러
- Foldable Event
- 역시 키크론이네
- RandomColor
- 풀배열 키보드
- Dot indicator
- aos img url bitmap
- 웨어러블
- 쏘렌토 하이브리드 시그니처
- 쏘렌토 하이브리드
- 프래그먼트 데이터 저장
- widget 만들기
- wear os
- 폰과 워치 페어링
- widget glide
- flutter web
- widget onreceive
- 안드로이드 폴드 대응
- android widget 만들기
- widget 이미지 로딩
- Fragment data
- 가중치랜덤
- 맥 전용
- 폴더블 이벤트 받기
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |