Advertisement
ms_olin

Untitled

May 7th, 2017
1,868
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.32 KB | None | 0 0
  1. /*
  2.      * Toggle switch button images
  3.      * changing image states to on / off
  4.      * */
  5.     private void toggleButtonImage(){
  6.         if(isFlashOn){
  7.             btnSwitch.setImageResource(R.drawable.btn_switch_on);
  8.         }else{
  9.             btnSwitch.setImageResource(R.drawable.btn_switch_off);
  10.         }
  11.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement