button - Need to ask something about Designs in android? -
button - Need to ask something about Designs in android? -
in apps google newsstand, when scroll mainui
, developer has used buttons imageview
. has created each button or there shortcut it? because creating each , every button takes lot of time.
you need utilize adapter , override getview method load images listview, utilize "position" variable load appropriate image:
public class myadap extends simplecursoradapter{ @override public view getview(int position, view convertview, viewgroup parent) { view v = super.getview(position, convertview, parent); imageview img = (imageview) v.findviewbyid(r.id.myimg); //load content of image base of operations on "position" homecoming v; }
}
android button design
Comments
Post a Comment