일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- React Native
- circular progress bar
- react native new architecture
- react native jsi
- react native old architecture
- 리액트 line chart
- 리액트네이티브 hooks
- react circle progress bar
- 하우스플리퍼인테리어
- react line chart
- react native hook
- ReactNative
- Graveyard Keeper
- react native lodash
- Kotlin
- RecyclerView
- react native hooks
- 프로그래머스 LV.0
- javascript interface
- react
- 리액트 라인차트
- 하우스플리퍼
- 프로그래머스
- Android
- react circle progress
- 안드로이드
- 스팀게임추천
- 리액트네이티브
- 프로그래머스 Lv0
- react 라인차트
- Today
- Total
목록안드로이드 (12)
숨참고 개발다이브
안드로이드에는 격자 형태로 아이템을 보여주는 GridView 라는 위젯이 존재한다. 하지만 GridView를 사용하는 대신 RecyclerView에 GridLayoutManager 를 설정하여 사용할 수 있다. val gridLayoutManager = GridLayoutManager(this, 3) mBinding.recyclerItem.layoutManager = gridLayoutManager mBinding.recyclerItem.adapter = RecyclerAdapter() GridLayoutManager 를 생성할 때 파라미터로 context 와 한 줄에 표시해줄 아이템 수인 spanCount 를 입력하면 된다. GridLayoutManager(this, 3) -> 한 줄에 3개의 아이템을..
int colorFromTop = getResources().getColor(R.color.downy); int colorFromBottom = getResources().getColor(R.color.scooter); int colorTo = getResources().getColor(R.color.transparent); int[] colors = {interpolateColor(slideOffset, colorFromTop, colorTo), interpolateColor(slideOffset, colorFromBottom, colorTo)}; GradientDrawable gd = new GradientDrawable(GradientDrawable.Orientation.TOP_BOTTOM, col..
XML 에서 EditText에 해당 코드 추가 singleLine 이 적용되어야 imeOptions 가 동작한다. android:imeOptions="actionNext" android:singleLine="true" actionNext = 다음 actionDone = 완료 actionGo = 이동 actionSearch = 검색 actionSend = 보내기 actionPrevious = 이전
1. manifest permission 추가 2. Receiver 생성 public class SmsReceiver extends BroadcastReceiver { @Override public void onReceive(final Context context, Intent intent) { Bundle bundle = intent.getExtras(); SmsMessage[] message = null; String str = ""; String phoneNumber = ""; if (bundle != null) { Object[] pdus = (Object[]) bundle.get("pdus"); message = new SmsMessage[pdus.length]; for (int i=0; i