일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- #1차원배열
- git flow
- #JAVASCRIPT
- html code
- html video
- html multimedia
- docker example
- #android activity
- 하이퍼레저패브릭
- html youtube
- relative path
- #3차원배열
- border-box
- #성적관리프로그램
- html charset
- #다차원포인터
- html id
- #C++ 연산자함수오버로딩
- #bubbleSort
- 토큰경제
- html5 new tag
- mac terminal command
- #2차원배열
- #CallByAddress
- #C++ has~a
- html object
- #binary
- #자바상속#자바이즈어#is~a
- html plug-in
- hyperledger transaction
Archives
- Today
- Total
A sentimental robot
메소드를 공유하는 위젯 본문
<!--클릭 시 f1함수를 부르는 다른 버튼들이 있다면--><Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button1"
android:id="@+id/button01"
android:onClick="f1"
android:background="#ffd900"
android:textColor="#00d9ff"
android:textSize="30dp"
android:enabled="true"
android:visibility="visible"
android:layout_margin="20dp"
android:padding="30dp"
/>
public void f1(View view) {
switch (view.getId()) {
case R.id.button01:
Log.v("eun", "BUTTON1");
break;
case R.id.button02:
Log.v("eun", "BUTTON2");
break;
case R.id.button03:
Log.v("eun", "BUTTON3");
break;
default:
break;
}
}
'Android Studio' 카테고리의 다른 글
ListView (0) | 2018.01.29 |
---|---|
Spinner (0) | 2018.01.29 |
LinearLayout (0) | 2018.01.12 |
익명클래스를 이용해서 이벤트리스너 만들기 (0) | 2018.01.11 |
안드로이드를 시작하기 전에.. (0) | 2018.01.11 |