Android, replace 8월 25, 2014 ** replace Stirng a = "a a a"; a = a.replace("a", "b"); result -> a = "b b b" ** replaceFirst Stirng a = "a a a"; a = a.replaceFirst("a", "b"); result -> a = "b a a" 자세한 내용 보기
Mac, Android, USB Tethering 8월 22, 2014 HorNDIS http://joshuawise.com/horndis ...> Galaxy Note2에서 이거 하면, USB debugging이 안된다? .. 자세한 내용 보기
Android, LayoutInflater, get object from xml 8월 06, 2014 현재의 컨텐츠 레이아웃에서 콤포넌트 받아오기 Button btn = (Button)findViewById(R.id. button1 ); 다른 레이아웃에서 받아오기 LayoutInflater factory = LayoutInflater.from(this); View main2 = factory.inflate(R.layout.main2 , null); Button btn = ( Button )main2.findViewById( R.id.btn ); 자세한 내용 보기