일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Android Admob Test ID
- Android LiveData
- Basic Fragment
- 아이폰 알림 워치
- 현재 버전
- Android Button 대문자
- 애플워치 완충
- Chrome Dark Mode
- Android 외부브라우저
- Android Intent data
- Admob Banner
- Android Progressbar
- Android Jcenter Warning
- Basic Android
- 페이스아이디 마스크
- Android 광고
- Android Bundle
- Android
- Android 화면 꺼짐 방지
- mac java
- Android Jcenter
- Android Intent Bundle
- 애플워치
- Chrome Dark
- Android 프로젝트명 변경
- Kotlin 형변환
- Android 값전달
- Android Fragment Sample
- 혼자 만들었다!
- Android Intent Bundle Data
- Today
- Total
목록전체 글 (43)
배고파
안녕하세요. 저는 SourceTree 에서 Github 계정연동을 해보았습니다. Public Lapository 는 잘 나오지만,,,,, Private Lapository 는 안나오는 현상이 발생하였습니다. 해결법을 말씀 드리겠습니다. Github 사이트 로그인 후 설정 화면으로 갑니다. [SSH and GPG keys] 화면으로 이동합니다. github.com/settings/keys GitHub: Where the world builds software GitHub is where over 56 million developers shape the future of software, together. Contribute to the open source community, manage your Git ..
getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON); 해당 코드를 Activity 시작 하고 넣어주면 된다.
퍼왔습니다. github.com/Ccapton/Collection-Android-Progress Ccapton/Collection-Android-Progress 安卓自定义Progressbar控件汇总. Contribute to Ccapton/Collection-Android-Progress development by creating an account on GitHub. github.com
안드로이드에서 화면 전환을 할때 Intent 를 사용합니다. 이 경우 값을 전달할때 사용하는 방법에 대한 내용 입니다. 보내는 코드 Bundle bundle = new Bundle(); bundle.putInt("value001", "100"); bundle.putInt("value002", "200"); Intent intent = new Intent(mContext, SecondActivity.class); intent.putExtras(bundle); startActivity(intent); 받는 코드 Intent intent = getIntent(); Bundle bundle = intent.getExtras(); int value001 = bundle.getInt("value001", 0); i..