Back to project page RSSReader.
The source code is released under:
?????? ????? ?????? ?????? ?????????? ????????? 1.?????? ???????? ??????? ??????? ????? ?????? ????? ?????????...
If you think the Android project RSSReader listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package net.uyghurdev.avaroid.rssreader.tools; /* w w w . j ava 2 s .co m*/ /*This object contains the methods related to UI (such as, dialog, toast, ect.). * Created in Jan 18 2012 * Created by Dighar * * * * * */ import android.content.Context; import android.content.Intent; public class UIManager { Context ctx; boolean dialogOK; public UIManager(){} public UIManager(Context context) { ctx = context; } public void About(Context ctx) { // TODO Auto-generated method stub Intent intent = new Intent(); intent.setClass(ctx, net.uyghurdev.avaroid.rssreader.About.class); ctx.startActivity(intent); } }