21
Android में गतिविधि कैसे पुनः आरंभ करें
मैं Android को कैसे पुनः आरंभ कर सकता हूं Activity? मैंने निम्नलिखित की कोशिश की, लेकिन Activityबस चुटकी ली। public static void restartActivity(Activity act){ Intent intent=new Intent(); intent.setClass(act, act.getClass()); act.startActivity(intent); act.finish(); }