Could you please help me with the coding?
So, I want to change Text witch is below Image every time when I select new image.
For example:
my app is like in Travis's Wallpaper App tutorial. -> http://www.youtube.com/watch?v=oiCKnevQLWU And I want to change text every time the new image is selected.
Thank you, for your assistance!
Part of the code:
public void onClick(View v) {
// TODO Auto-generated method stub
switch (v.getId()){
case R.id.image1:
display.setImageResource(R.drawable.image1);
toPhone = R.drawable.image1;
break;
case R.id.image2:
display.setImageResource(R.drawable.image2);
toPhone = R.drawable.image2;
break;