if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { CharSequence name = "채널이름"; String description = "채널 디스크립션"; int 중요도 = NotificationManager.IMPORTANCE_DEFAULT; NotificationChannel channel = null; channel = new NotificationChannel("채널아이디", name, 중요도); channel.setDescription (description); //여기서 뱃지 여부 결정... channel.setShowBadge(true); // 시스템에 채널을 등록합니다. 중요성을 바꿀 수 없다. // 또는이 후에 다른 알림 동작 Notifi..
Intent intent = new Intent(mContext, 가고싶은 액티비티.class); intent.addCategory(Intent.CATEGORY_LAUNCHER); //얘는 확인 필요 intent.setFlags( Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP ); intent.setAction("상수 값"); //매니페스트 인텐트필터에 걸어놓은 상수 TaskStackBuilder stackBuilder = TaskStackBuilder.create (mContext); stackBuilder.addNextIntentWithParentStack (intent); PendingIntent resultPendingInten..
구글링을 못하는 건지 아무리 검색해봐도 찾지 못해서 직접 만들었다. private PointF mCenter; private float mRadius; private float mMaxDist;btn2.setOnTouchListener(new View.OnTouchListener() { @Override public boolean onTouch(View v, MotionEvent event) { Rect rect = new Rect(); v.getGlobalVisibleRect(rect); mRadius = btn2.getWidth() / 2; mMaxDist = btn2.getHeight() / 2; float x = rect.left + mRadius; float y = rect.top + mMaxD..
public InputFilter filterKorea = new InputFilter() { public CharSequence filter(CharSequence source, int start, int end, Spanned dest, int dstart, int dend) { Pattern ps = Pattern.compile("^[가-힣ㄱ-ㅎㅏ-ㅣ\u318D\u119E\u11A2\u2022\u2025\u00B7\uFE55\u4E10\u3163\u3161]+$"); if (!ps.matcher(source).matches()) { return null; } return ""; } }; mEdit_pw.setFilters(new InputFilter[]{filterKorea}); \u318D\u11..
안드로이드의 잠금화면을 구현 하던 중 백그라운드에서 포그라운드로 올라올때 잠금액티비티를 띄워주면 되겠다는 생각으로 열심히 구글링 해서 찾은 방법이다. 일단 따로 서비스를 돌리거나 라이브러리를 추가하지 않아도 되기에 좋은 방법인 것 같다. 그리고 되게 쉬움. -----------------------------------------------코드---------------------------------------------------------- Application을 상속받는 java파일을 하나 만든다. //application은 하나의 파일받게 상속받을 수 없다. 고로 기존 프로젝트에 얘를 상속받는 놈이 있다면 그놈안에 코드를 넣어주어야 한다. 온크레딧 내부에 registerActivityLifecy..
- Total
- Today
- Yesterday
- 데이터베이스
- MongoDB
- 차번호 정규식
- 귀찮아;;
- 클래스형 코드
- 안드로이드
- React Native
- 차번호 정규표현식
- ubunut android
- nosql
- Android
- not starting .bash_profile
- 명령어
- 구글 맵 선그리기
- ubunut 설치 link
- adb 환경변수
- mongo db
- rn
- https://medium.com/@limgyumin/%EC%BD%94%ED%8B%80%EB%A6%B0-%EC%9D%98-apply-with-let-also-run-%EC%9D%80-%EC%96%B8%EC%A0%9C-%EC%82%AC%EC%9A%A9%ED%95%98%EB%8A%94%EA%B0%80-4a517292df29
- not working adb
- not found adb
- mac android
- https://hwan-shell.tistory.com/244
- insert
- 구글 맵 경로 그리기
- spannableText
- react native state
- text 부분 색 칠하기
- 함수형 코드
- 자바
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |