你有没有看过许多应用程序中的页面在启动第一个活动之前出现,并且不知何故它就像一个等待页面?我是Android的初学者,当我点击我的应用程序时,首先出现一个空白页面,然后3秒后主要活动出现。但在许多应用程序中,在第一个活动之前有一种自定义页面,就像进度条或某事物。在开始我的应用程序之前,如何自定义不那么漂亮的空白页?! Thanx提前。
答案 0 :(得分:3)
从技术上讲,您所谈论的内容称为启动画面。
启动画面用于显示冷启动,我们可以准备好运行应用程序。谷歌主张使用它。
显示启动画面的方法很少。
您可以像这样使用CountDownTimer
。在SplashActivity.java
private int TIME_OUT = 3000;
CountDownTimer countDownTimer = new CountDownTimer(TIME_OUT, TIME_OUT) { @Override public void onTick(long millisUntilFinished) { // Leave this } @Override public void onFinish() { // Start your app main activity Intent i = new Intent(SplashScreen.this, MainActivity.class); startActivity(i); // close this activity finish(); }
CountDownTimer countDownTimer = new CountDownTimer(TIME_OUT, TIME_OUT) { @Override public void onTick(long millisUntilFinished) { // Leave this } @Override public void onFinish() { // Start your app main activity Intent i = new Intent(SplashScreen.this, MainActivity.class); startActivity(i); // close this activity finish(); }
您可以像这样使用}.start();
。在Handler
SplashActivity.java
},TIME_OUT);
使用主题 - 正确的做法
在可绘制文件夹中添加private static int TIME_OUT = 3000;
new Handler().postDelayed(new Runnable()
{
@Override
public void run() {
Intent i = new Intent(SplashScreen.this, MainActivity.class);
startActivity(i);
finish();
}
文件
background_splash.xml
在<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:drawable="@color/gray"/>
<item>
<bitmap
android:gravity="center"
android:src="@mipmap/ic_launcher"/>
</item>
</layer-list>
styles.xml
在<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
</style>
<style name="SplashTheme" parent="Theme.AppCompat.NoActionBar">
<item name="android:windowBackground">@drawable/background_splash</item>
</style>
AndroidManifest.xml
最后添加一个名为<activity
android:name=".SplashActivity"
android:theme="@style/SplashTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
的活动并添加这些代码
SplashActivity.java
答案 1 :(得分:1)
您可以使用启动画面 工作代码:
public class Mainsplash extends Activity {
/** Duration of wait **/
private final int SPLASH_DISPLAY_LENGTH = 3000;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.splashscreen);
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
/* New Handler to start the Menu-Activity
* and close this Splash-Screen after some seconds.*/
new Handler().postDelayed(new Runnable(){
@Override
public void run() {
/* Create an Intent that will start the Menu-Activity. */
Intent mainIntent = new Intent(Mainsplash.this,MainActivity.class);
Mainsplash.this.startActivity(mainIntent);
Mainsplash.this.finish();
}
}, SPLASH_DISPLAY_LENGTH);
}
}
Xml代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/load_src"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/splashimg"
android:gravity="center"
android:orientation="vertical" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/ll_v1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:layout_alignParentBottom="true"
>
<ProgressBar
android:id="@+id/prg"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
</RelativeLayout>
</LinearLayout>
还有Manifest文件
<activity
android:name=".Mainsplash"
android:label="@string/app_name"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
使用该启动活动的intent过滤器使其首先启动
希望这会有所帮助