Collection(컬렉션) 자바에서 '목록성 데이터를 처리하는 자료구조'를 통칭합니다. 자료구조(Data Structure)는 어떤 정보를 담는 것을 의미하여, 하나의 데이터가 아닌 여러 데이터를 담을 때 사용하는 것이다. 배열이 가장 기본적인 자료구조이며, DTO 또한 자료를 담는 하나의 방식이라고 볼 수 있다. * 전체를 역순으로 재정렬 Collections.reverse(list); * 특정 인덱스끼리 순서 바꾸기 Collections.swap(list, index1, index2);
The Double class wraps a value of the primitive type double in an object. An object of type Double contains a single field whose type is double. In addition, this class provides several methods for converting a double to a String and a String to a double, as well as other constants and methods useful when dealing with a double. 1. double 형 숫자를 String으로 변환 String strTemp = Double.toString(1.23456..
안드로이드 개발에 있어서 기본적으로 사용되는 메세지를 띄우는 방법입니다. 아래 한 줄 코드를 가지고 쉽게 메세지를 바로 띄울 수 있습니다. 설정으로는 짧게 노출과 길게 노출 두 가지로 설정할 수도 있습니다. import android.widget.Toast; Toast.makeText(this, "여기에 메세지를 작성해주세요.", Toast.LENGTH_SHORT).show(); * LENGTH_SHORT : 짧게 노출* LENGTH_LONG : 길게 노출* fragment 이용시 this 대신 getActivity()를 사용한다.
import android.content.Intent;import android.content.IntentFilter; Intent bat = registerReceiver(null, new IntentFilter(Intent.ACTION_BATTERY_CHANGED)); String battLevel = bat.getIntExtra("level", -1)+"%"; TextView textView = (TextView)findViewById(R.id.textView4);textView.setText( "배터리 : " + battLevel );
- Total
- Today
- Yesterday