Skip to content

Commit

Permalink
Add getters and setters to SplashScreen
Browse files Browse the repository at this point in the history
  • Loading branch information
MotasemAghbar committed Aug 3, 2021
1 parent d4e860d commit f01723f
Showing 1 changed file with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,16 @@
* Email:[email protected]
*/
public class SplashScreen {
private static Dialog mSplashDialog;
private static WeakReference<Activity> mActivity;
protected static Dialog mSplashDialog;
protected static WeakReference<Activity> mActivity;

public static Dialog getSplashDialog() {
return mSplashDialog;
}

public static WeakReference<Activity> getActivity() {
return mActivity;
}
/**
* 打开启动屏
*/
Expand Down

0 comments on commit f01723f

Please sign in to comment.