2015년 9월 18일 금요일

모바일 프로그래밍 실습 button - 참고할 만한 괜찮은 소스

다른 학생들도 참고할 만한 코드라서 공유 합니다.
심영보 학생의 button 실습 코드
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
public void onClick(View view){
// Button button = (Button)findViewById(view.getId());
switch (view.getId()){
case R.id.button0: startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.nate.com")));
break;
case R.id.button1: startActivity(new Intent(Intent.ACTION_DIAL, Uri.parse("tel:911")));
break;
case R.id.button2: startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("content://media/internal/images/media")));
break;
case R.id.button3: finish();
break;
}
}
}