android - how to automatically save a text on the image view? -


i want save text on image view different fonts on image view in different position different fonts according user?

 public class fullimageactivity extends activity { @override public void oncreate(bundle savedinstancestate) {     super.oncreate(savedinstancestate);     setcontentview(r.layout.fullimage);      // intent data     intent = getintent();      // selected image id     int position = i.getextras().getint("id");     imageadapter imageadapter = new imageadapter(this);      imageview imageview = (imageview) findviewbyid(r.id.fullimage);     imageview.setimageresource(imageadapter.mthumbids[position]);   }  } 


Comments

Popular posts from this blog

java.util.scanner - How to read and add only numbers to array from a text file -

rewrite - Trouble with Wordpress multiple custom querystrings -

php - Accessing static methods using newly created $obj or using class Name -