這篇文章給大家分享的是有關(guān)實現(xiàn)Android啟動屏畫面的案例的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
創(chuàng)新互聯(lián)建站服務緊隨時代發(fā)展步伐,進行技術(shù)革新和技術(shù)進步,經(jīng)過十多年的發(fā)展和積累,已經(jīng)匯集了一批資深網(wǎng)站策劃師、設計師、專業(yè)的網(wǎng)站實施團隊以及高素質(zhì)售后服務人員,并且完全形成了一套成熟的業(yè)務流程,能夠完全依照客戶要求對網(wǎng)站進行成都網(wǎng)站制作、成都做網(wǎng)站、外貿(mào)營銷網(wǎng)站建設、建設、維護、更新和改版,實現(xiàn)客戶網(wǎng)站對外宣傳展示的首要目的,并為客戶企業(yè)品牌互聯(lián)網(wǎng)化提供全面的解決方案。Android啟動屏不正確的實現(xiàn)可能會導致用戶長時間等待,或者可能會出現(xiàn)黑白屏。這里簡單演示如何正確實現(xiàn)Android啟動屏。
演示分為以下幾個步驟:
在res/drawable文件夾中創(chuàng)建splash_background.xml文件。
編輯res/values/styles.xml
創(chuàng)建java/.../SplashActivity
編輯manifests/AndroidManifest.xml
1、在res/drawable文件夾中創(chuàng)建splash_background.xml文件
根據(jù)你的需求調(diào)整位圖圖像的重力和尺寸。
<?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、創(chuàng)建java/.../SplashActivity
一旦App啟動,SplashActivity將啟動,然后轉(zhuǎn)移到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>
感謝各位的閱讀!關(guān)于“實現(xiàn)Android啟動屏畫面的案例”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
文章標題:實現(xiàn)Android啟動屏畫面的案例-創(chuàng)新互聯(lián)
標題來源:http://vcdvsql.cn/article6/djppog.html
成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供網(wǎng)頁設計公司、企業(yè)網(wǎng)站制作、ChatGPT、網(wǎng)站策劃、Google、品牌網(wǎng)站設計
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)