今天就跟大家聊聊有关Android应用中怎么添加一个splash界面,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。
吴起网站制作公司哪家好,找创新互联!从网页设计、网站建设、微信开发、APP开发、自适应网站建设等网站项目制作,到程序开发,运营维护。创新互联从2013年创立到现在10年的时间,我们拥有了丰富的建站经验和运维经验,来保证我们的工作的顺利进行。专注于网站建设就选创新互联。
1,在app/build.gradle中的闭包中加入:
compile 'cn.bingoogolapple:bga-banner:2.1.6@aar' compile 'com.android.support:support-v4:24.1.0'
2,布局文件:activity_splash.xml。
" android:textColor="@android:color/white" android:textSize="16sp"/>
3,逻辑代码,SplashActivity.java
package com.gyq.cloudreader; import android.content.Intent; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import cn.bingoogolapple.bgabanner.BGABanner; /** * 引导界面 */ public class SplashActivity extends AppCompatActivity { private BGABanner mBackgroundBanner; private BGABanner mForegroundBanner; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_splash); initView(); initListener(); processLogic(); } private void initView() { mBackgroundBanner = (BGABanner)findViewById(R.id.banner_guide_background); mForegroundBanner = (BGABanner)findViewById(R.id.banner_guide_foreground); } private void initListener() { mForegroundBanner.setEnterSkipViewIdAndDelegate(R.id.btn_guide_enter, R.id.tv_guide_skip, new BGABanner.GuideDelegate() { @Override public void onClickEnterOrSkip() { startActivity(new Intent(SplashActivity.this, MainActivity.class)); finish(); } }); } private void processLogic() { //设置数据源 mBackgroundBanner.setData(R.drawable.uoko_guide_background_1,R.drawable.uoko_guide_background_2,R.drawable.uoko_guide_background_3); mForegroundBanner.setData(R.drawable.uoko_guide_foreground_1,R.drawable.uoko_guide_foreground_2,R.drawable.uoko_guide_foreground_3); } @Override protected void onResume() { super.onResume(); // 如果开发者的引导页主题是透明的,需要在界面可见时给背景 Banner 设置一个白色背景,避免滑动过程中两个 Banner 都设置透明度后能看到 Launcher mBackgroundBanner.setBackgroundResource(android.R.color.white); } }
小结:记得以前写一个这样的引导页,还需要自己手写半天,现在有开源啦!看上面的代码我想你应该已经知道了这个就是用的BGABanner来实现的。不过还有点小细节。
1,布局文件中的style=”@style/WrapWrap”,我们需要在values文件夹下新建一个styles_base.xml。
还有styles.xml文件中添加如下代码,这样可以整个屏幕显示:
最后清单文件,注册SplashActivity是写如下代码。
看完上述内容,你们对Android应用中怎么添加一个splash界面有进一步的了解吗?如果还想了解更多知识或者相关内容,请关注创新互联行业资讯频道,感谢大家的支持。