Answers for "android studio change app icon"

1

save android studio home bash_profile

nano ~/.bash_profile 

export ANDROID_HOME=/YOUR_PATH_TO/android-sdk
export PATH=$ANDROID_HOME/platform-tools:$PATH
export PATH=$ANDROID_HOME/tools:$PATH

source ~/.bash_profile
echo $ANDROID_HOME
Posted by: Guest on March-04-2020
0

android studio change image on button click

ImageButton btn = (ImageButton)findViewById(R.id.imageButton1);       
 btn.setImageResource(R.drawable.actions_record);
Posted by: Guest on April-23-2020

Code answers related to "android studio change app icon"

Browse Popular Code Answers by Language