源码简介:Uber welcome page.Uber的欢迎界面Android版 来源:https://github.com/KobeGong/UberSplash
下载地址:http://down.51cto.com/data/2194852
源码效果:
源码片段:
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
- Window window = getWindow();
- window.setFlags(
- WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS,
- WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
- // window.setFlags(
- // WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION,
- // WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
- }
- setContentView(R.layout.activity_main);
- getSupportActionBar().hide();
- findView();
- initView();
- File videoFile = getFileStreamPath(VIDEO_NAME);
- if (!videoFile.exists()) {
- videoFile = copyVideoFile();
- }
- playVideo(videoFile);
- playAnim();
- }