91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

實現Android啟動屏畫面的案例

發布時間:2021-02-18 14:29:09 來源:億速云 閱讀:177 作者:小新 欄目:移動開發

這篇文章給大家分享的是有關實現Android啟動屏畫面的案例的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

Android啟動屏不正確的實現可能會導致用戶長時間等待,或者可能會出現黑白屏。這里簡單演示如何正確實現Android啟動屏。

演示分為以下幾個步驟:

  1. 在res/drawable文件夾中創建splash_background.xml文件。

  2. 編輯res/values/styles.xml

  3. 創建java/.../SplashActivity

  4. 編輯manifests/AndroidManifest.xml

1、在res/drawable文件夾中創建splash_background.xml文件

根據你的需求調整位圖圖像的重力和尺寸。

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">

  <item android:drawable="@color/colorPrimary"/>

  <item android:gravity="center" android:width="100dp" android:height="100dp">
    <bitmap
      android:gravity="fill_horizontal|fill_vertical"
      android:src="@drawable/logo"/>
  </item>

</layer-list>

2、編輯res/values/styles.xml

這里的樣式用于啟動畫面。 這是為了在啟動屏幕時隱藏操作欄。

<resources>

  <!-- Base application theme. -->
  <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
    <!-- Customize your theme here. -->
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorAccent</item>
  </style>

  <style name="SplashTheme" parent="Theme.AppCompat.Light.NoActionBar">
    <item name="android:windowBackground">@drawable/splash_background</item>
  </style>

</resources>

3、創建java/.../SplashActivity

一旦App啟動,SplashActivity將啟動,然后轉移到MainActivity。

package com.example.jtdan.goodSplash;

import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;

public class SplashActivity extends AppCompatActivity {

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    //switch from splash activity to main activity
    Intent intent = new Intent(this, MainActivity.class);
    startActivity(intent);
    finish();
  }
}

4、編輯manifests/AndroidManifest.xml

在清單文件中添加新的啟動畫面Activity。

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="com.example.jtdan.goodSplash">

  <application

    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="goodSplash"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">

    <activity android:name="com.example.jtdan.goodSplash.SplashActivity" android:theme="@style/SplashTheme">
      <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
      </intent-filter>
    </activity>

    <activity android:name="com.example.jtdan.goodSplash.MainActivity"></activity>

  </application>

</manifest>

感謝各位的閱讀!關于“實現Android啟動屏畫面的案例”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

彭阳县| 郎溪县| 铁岭县| 巴楚县| 广河县| 舒城县| 金坛市| 马边| 定兴县| 仁布县| 枣庄市| 财经| 菏泽市| 台南县| 黎川县| 罗江县| 正镶白旗| 花莲县| 修水县| 武胜县| 容城县| 新闻| 叶城县| 原平市| 平原县| 信宜市| 土默特右旗| 香河县| 峨山| 贵州省| 浪卡子县| 响水县| 黑山县| 吴忠市| 潜江市| 静安区| 阿克苏市| 揭阳市| 婺源县| 西和县| 海阳市|