일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 circle progress
- 프로그래머스 Lv0
- react native jsi
- 하우스플리퍼인테리어
- Android
- react native lodash
- React Native
- javascript interface
- 프로그래머스 LV.0
- react native hooks
- 리액트 line chart
- ReactNative
- react native new architecture
- react native old architecture
- react
- 프로그래머스
- Graveyard Keeper
- 리액트네이티브
- 리액트네이티브 hooks
- circular progress bar
- 하우스플리퍼
- react 라인차트
- react line chart
- 리액트 라인차트
- 안드로이드
- Kotlin
- react native hook
- react circle progress bar
- RecyclerView
- 스팀게임추천
- Today
- Total
목록개발/Android (14)
숨참고 개발다이브
xml에 리사이클러뷰 감싸는 레이아웃에 android:descendantFocusability="blocksDescendants" 추가, java에서는 recyclerView.setHasFixedSize(true); recyclerView.setNestedScrollingEnabled(false); 추가하면 된다. 코드 전체 recyclerView.setHasFixedSize(true); RecyclerView.LayoutManager mLayoutManager = new LinearLayoutManager(mContext); recyclerView.setLayoutManager(mLayoutManager); adapter = new Adapter(mContext, dongList, listener); ..
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 파일 텍스트뷰 속성에 해당 설정을 추가하면 된다. android:ellipsize="end" android:singleLine="true" ※ TextView 가 wrap_content 상태일 경우 적용되지 않는다.
자바 코드로 해당 라인을 추가하면 된다. webView.clearCache(true);
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