Metro UI on an Android App -
i developing app user interface similar of metro ui of windows app not similar. made relative layout "windows" places. given have formatted them properly. how add simple animations such changing images on each window on display (ie. without having let users touch in order trigger animations.)
here animation imitate start without user touch/hover.
you should create asynctask , call recursively, (ignore types of parameters):
public class animateasynctask extends asynctask<string, void, string>{ @override protected string doinbackground(string... vurl) { //do waiting //trigger animations } @override protected void onpostexecute(string a) { animateasynctask atsk = new animateasynctask(); atsk.execute(); super.onpostexecute(a); }
Comments
Post a Comment