android 启动页面要怎么去掉状态栏呢
来源:11-11 React Native启动白屏问题原因及解决方案(Android)
慕前端8516627
2018-06-28
写回答
1回答
-
CrazyCodeBoy
2018-06-29
在MainActivity中调用SplashScreen.show(this,true)
public class MainActivity extends ReactActivity { @Override protected void onCreate(Bundle savedInstanceState) { SplashScreen.show(this,true); // here super.onCreate(savedInstanceState); } // ...other code}
012020-02-03
相似问题