목록분류 전체보기 (163)
Simple&Natural
This Closure Wrapper class OOP Call by value & Call by reference
본 포스팅은 2018. 11. 30. 22:37 네이버 블로그에 작성했던 글을 이전한 것임 A -> B -> C 를 띄우는 과정에서 B에서 C로 보내는 인텐트에 FLAG_ACTIVITY_CLEAR_TASK만 넣어주면 A가 남아버림. 반드시 아래와 같이 두 FLAG를 전부 넣어주어야 함. intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK); intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); https://blog.naver.com/forioso/221315070929 Intent FLAG [펌] http://theeye.pe.kr/archives/1298 Activity 생성시에 사용되는 Intent Flag 정리 안드로이드 엑... ..
Display display = getWindowManager().getDefaultDisplay(); Point size = new Point(); display.getSize(size); int customH1 = (size.y*11)/12; int customH2 = (size.y*1)/12; int customH1dp = (520)*(size.y/1280); int customH2dp = (50)*(size.y/1280); Log.d("viewT", "size.y = "+size.y); Log.d("viewT", "customH1 = "+customH1); Log.d("viewT", "customH2 = "+customH2); // RecyclerView 크기 조절 RelativeLayout...