3. [Live Coding] 2주차_5/23
method란?
method(1/3)
while
switch-case
복습
public class MainActivity extends Activity {
private TextView resultView;
private static final int FOR_COUNT = 50;
@Override
protected void onCreate(Bundle savedInstanceState) { // method 이름
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
resultView = (TextView) findViewById(R.id.result);
}
...
http://camp-android.slack.com
4. [Live Coding] 2주차_5/23
method란?
method(1/3)
while
switch-case
복습
public class MainActivity extends Activity {
private TextView resultView;
private static final int FOR_COUNT = 50;
@Override // method 의
protected void onCreate(Bundle savedInstanceState) { // 인자 type 과
super.onCreate(savedInstanceState); // 인자 name
setContentView(R.layout.activity_main);
resultView = (TextView) findViewById(R.id.result);
}
...
Bundle 이란? (http://developer.android.com/intl/ko/reference/android/os/Bundle.html)
http://camp-android.slack.com
5. [Live Coding] 2주차_5/23
method란?
method(1/3)
while
switch-case
복습
public class MainActivity extends Activity {
private TextView resultView;
private static final int FOR_COUNT = 50;
@Override // method 의
protected void onCreate(Bundle savedInstanceState) { // 인자 type 과
super.onCreate(savedInstanceState); // 인자 name
setContentView(R.layout.activity_main);
resultView = (TextView) findViewById(R.id.result);
}
...
Bundle 이란? (http://developer.android.com/intl/ko/reference/android/os/Bundle.html)
http://camp-android.slack.com
type을 아파트에 비유하면...
- 몇 평짜리 아파트인가?
- 몇 층짜리 아파트인가?
- 계단식인가?
- 지하주차장이 충분한가?
- 어떤 브랜드의 아파트인가?
6. [Live Coding] 2주차_5/23
method란?
method(1/3)
while
switch-case
복습
public class MainActivity extends Activity {
private TextView resultView;
private static final int FOR_COUNT = 50;
@Override // method 의
protected void onCreate(Bundle savedInstanceState) { // 인자 type 과
super.onCreate(savedInstanceState); // 인자 name
setContentView(R.layout.activity_main);
resultView = (TextView) findViewById(R.id.result);
}
...
Bundle 이란? (http://developer.android.com/intl/ko/reference/android/os/Bundle.html)
http://camp-android.slack.com
아파트는 메모리(램 혹은 힙)에
존재함.
- Bundle type 의 캠프아파트가
신사동 어딘가에 존재
- Bundle type 의 객체가 메모
리(램 혹은 힙) 어딘가에 존재
9. [Live Coding] 2주차_5/23
method란?
method(3/3)
while
switch-case
복습
@Override
protected void onResume() {
super.onResume();
String result = getIfResult(5, 10);
...
}
private String getIfResult(int a, int b) {
String retVal = null;
if (a > b) {
retVal = String.format("a = %dnb = %dnna > b", a, b);
} else if (a < b) {
...
http://camp-android.slack.com