Front-end76 Android studio : View - LinearLayout .xml android:layout_width="match_parent" 폰 전체 크기 weigh : 가중치 1 : 2 .. gravity : center, bottom ... orientataion : verical, horizontal 2020. 1. 6. 안드로이드 스튜디오 , JDK 설치 https://itgroovy.tistory.com/427 2020. 1. 6. Android studio (안드로이드 앱 개발) 메시지 출력하기 Toast.makeText(getApplicationContext(),txt,Toast.LENGTH_SHORT).show(); 함수 설정 후 함수이름을 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).s.. 2019. 9. 1. Android studio : 이미지 위치 조정 이미지를 원하는 위치에 무작정 놓으면 적용이 안됨 하나하나 기준에 맞춰 당겨줘야함 코드로 위치 선정 가능하다. 2019. 9. 1. 이전 1 ··· 4 5 6 7 다음