728x90
반응형
1 2 3 4 5 6 7 8 9 | var button = FindViewById<ImageButton>(Resource.Id.MyImageButton); button.Touch += (object sender, View.TouchEventArgs e) => { if (e.Event.Action == MotionEventActions.Down) { button.SetImageResource(Resource.Drawable.Icon); } else if (e.Event.Action == MotionEventActions.Up) { button.SetImageResource(Android.Resource.Drawable.IcMenuGallery); } }; | cs |
출처 : http://stackoverflow.com/questions/12682586/change-image-while-imagebutton-is-pressed
728x90
반응형
'프로그래밍 > Android' 카테고리의 다른 글
how to solve "ERROR: Cause: unable to find valid certification path to requested target" (1) | 2019.06.05 |
---|---|
JNI에서 java class 메소드 사용하기 (0) | 2016.09.05 |
Xamarin Toast (0) | 2016.08.25 |
Xamrin 안드로이드 앱 배포 방법 (0) | 2016.08.19 |
how to use so files in Android JNI -2- (3) | 2016.08.03 |
how to use so files in Android JNI -1- (3) | 2016.08.02 |
Xamrin 설치 (0) | 2016.07.26 |
댓글