Toast 사용 - 2014.03.11 강의내용

public class HelloAndroidActivity extends Activity {
	Button _clickBtn;

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.main); // 초기에 띄워줄 화면

		// 초기화
		_clickBtn = (Button) findViewById(R.id.btn_click);

		// 이벤트 리스너
		_clickBtn.setOnClickListener(new View.OnClickListener() {
			@Override
			public void onClick(View v) {
				// 매개변수 1 : context 내가 사용할 응용프로그램 자체
				// 매개변수 2 : 출력할 문자
				// 매개변수 3 : 화면에 보여줄 시간

				Toast.makeText(HelloAndroidActivity.this, "test", Toast.LENGTH_LONG).show();
				// Toast.makeText(getApplicationContext(), "test",Toast.LENGTH_LONG).show();

				// 아래 변수를 생성해주어야만 사용 가능
				// final Context thisContext = this.getApplicationContext();
				// Toast.makeText(thisContext, "test",Toast.LENGTH_LONG).show();
			}
		});

	}

	@Override
	public boolean onCreateOptionsMenu(Menu menu) {
		// Inflate the menu; this adds items to the action bar if it is present.
		getMenuInflater().inflate(R.menu.hello_android, menu);
		return true;
	}

}

+ Recent posts