
Product
Introducing Webhook Events for Alert Changes
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.
react-native-launch-optimum
Advanced tools
优化react-native android 启动时间
##作者
QQ: 289459798 QQ群: 161263093
欢迎更多的喜欢开源的小伙伴加入

npm install react-native-launch-optimum
修改setting.gradle,增加
include ':react-native-launch-optimum'
project(':react-native-launch-optimum').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-launch-optimum/android')
修改app目录下的build.gradle,增加
compile project(':react-native-launch-optimum')
修改MainActivit继承的父类为ZReactActivity
public class MainActivity extends ZReactActivity {
...// 其他代码
// 启动显示的页面
@Override
public int getLayout() {
return R.layout.loading;
}
// 启动页显示时间
@Override
public int getWaitTime() {
return 3;
}
// 引导页面
@Override
public Class<? extends Activity> getGuideActivity() {
int versionCode = DeviceHelper.getVersionCode(this);
int preVersionCode = this.getSharedPreferences("config", Activity.MODE_PRIVATE).getInt("versionCode", 0);
if (preVersionCode < versionCode) {
return GuideActivity.class;
}
return null;
}
}
ios 优化很简单,其实react-native 在ios上的表现比android 要好很多,如果需要优化,可以在 AppDelegate.m中加以下代码
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
...
self.window.rootViewController = rootViewController;
[self lanuchOptimum];
[self.window makeKeyAndVisible];
return YES;
}
- (void) lanuchOptimum {
CGSize viewSize = self.window.bounds.size;
// 横屏修改这个值
NSString *viewOrientation = @"Portrait";
NSArray* imagesDict = [[[NSBundle mainBundle] infoDictionary] valueForKey:@"UILaunchImages"];
for (NSDictionary* dict in imagesDict) {
CGSize imageSize = CGSizeFromString(dict[@"UILaunchImageSize"]);
if (CGSizeEqualToSize(imageSize, viewSize) && [viewOrientation isEqualToString:dict[@"UILaunchImageOrientation"]]) {
NSString *lanuchImage = dict[@"UILaunchImageName"];
UIImageView *launchView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:lanuchImage]];
launchView.frame = self.window.bounds;
launchView.contentMode = UIViewContentModeScaleAspectFill;
[self.window.rootViewController.view addSubview:launchView];
[self.window.rootViewController.view bringSubviewToFront:launchView];
// 延时显示1秒钟
[UIView animateWithDuration:1.0f delay:1.0f options:UIViewAnimationOptionBeginFromCurrentState animations:^{
// 增加隐藏时候的动画
launchView.alpha = 0.0f;
launchView.layer.transform = CATransform3DScale(CATransform3DIdentity, 1.2, 1.2, 1);
} completion:^(BOOL finished) {
[launchView removeFromSuperview];
}];
break;
}
}
}
FAQs
优化react-native 启动白屏
We found that react-native-launch-optimum demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.