함수 설정 후
함수이름을
onClick 속성으로 넣기
public void sayHello(View v) {
String msg = "만나서 반갑습니다.";
Toast.makeText(getApplicationContext(),msg+ msg.length(),Toast.LENGTH_SHORT).show(); //메시지 출력
}
//msg.length() 로 메시지 추가
protected void function (View v)
{
int a,b,c;
a= 3; b = 2;
c = a+b;
ToastMessage(c);
}
public void ToastMessage(String txt)
{
Toast.makeText(getApplicationContext(),txt,Toast.LENGTH_SHORT).show();
}
public void ToastMessage(int txt)
{
Toast.makeText(getApplicationContext(),Integer.toString(txt),Toast.LENGTH_SHORT).show();
}
public void ToastMessage(double txt)
{
Toast.makeText(getApplicationContext(),Double.toString(txt),Toast.LENGTH_SHORT).show();
}
layout_constraints 0.2 20 퍼 센트 비율
지그재그 (변동 최대)
'Front-end > Android (안드로이드 앱 개발)' 카테고리의 다른 글
Android studio : View - FrameLayout , ScrollView (0) | 2020.01.08 |
---|---|
Android studio : View - RelativeLayout (0) | 2020.01.07 |
Android studio : View - LinearLayout (0) | 2020.01.06 |
안드로이드 스튜디오 , JDK 설치 (0) | 2020.01.06 |
Android studio : 이미지 위치 조정 (0) | 2019.09.01 |
댓글