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

Popular posts from this blog

Change php variable from jquery value using ajax (same page) -

Pull out data related to my apps from Android Play Store and iOS App Store -

How can I fetch data from a web server in an android application? -