일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 개발
- FrameLayout
- TabLayout and ViewPager
- 운동
- 재태크
- 목표한번이뤄보자
- 독서
- Android Universal Image Loader
- overridePendingTraction
- 2020년 목표
- FragmentSatePagerAdapter
- FragmentPagerAdapter
- BottomNavigationViewEx
- Today
- Total
목록Android (22)
seops
1. Concepts 1) Android Support Design Library a) Google Doc : https://developer.android.com/topic/libraries/support-library/packages b) Design library for Coordinator Layout and Toolbars c) Add in build.gradle > com.android.support:design:28.0.0 2) Coordinator Layout and Toolbars a) What is Coordinator Layout? - Google Doc : https://developer.android.com/reference/android/support/design/widget/C..
Byte to binary String Sol 1) byte b1 = (byte) 129; String s1 = String.format("%8s", Integer.toBinaryString(b1 & 0xFF)).replace(' ', '0'); System.out.println(s1); // 1000v0001 Sol 2) byte b2 = (byte) 2; String s2 = String.format("%8S", Integer.toBinaryString(b2 & 0xFF)).replace(' ', '0'); System.out.println(s2); Ref) https://stackoverflow.com/questions/12310017/how-to-convert-a-byte-to-its-binary..