【定制化】在Android平台实现自定义的程序启动页

特别说明:以下仅适用于Android平台。

实现原理

  1. 创建安卓端自定义的Activity
  2. 禁用UnityPlayerActivity的启动Logo
  3. 改用自定义Activity

示例效果

参考简单步骤详细步骤都可实现。

自定义的启动动画,效果如下:

简单步骤

三步操作实现启动动画的自定义。

导入资源

这里,我预先做好了一个Unitypackage,下载后导入Unity即可。资源链接

这里默认的动画是示例效果中的启动动画。

替换动画

在Assets/Eqgis/Plugins/Android/目录下,找到unitydev...的安卓包。

使用解压工具打开unitydev-1.0.8.aar包,在res\raw\目录下,替换成你制作的"start.mp4"。

注意:你可以先解压aar,待覆盖"start.mp4"文件后,再打包(如,zip包修改aar后缀即可)

修改默认Activity

打开"Player Settings",启用自定义的AndroidManifest。

在Aseets/Plugins/Android目录下找到,AndroidManifest.xml,修改默认的Acitivity为"EqSplashActivity"。

示例如下:

xml 复制代码
<?xml version="1.0" encoding="utf-8"?>
<manifest
    xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.unity3d.player"
    xmlns:tools="http://schemas.android.com/tools">
    <application>
        <activity android:name="com.eqgis.unity.EqSplashActivity"
                  android:screenOrientation="landscape"
                  android:theme="@style/UnityThemeSelector">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
            <meta-data android:name="unityplayer.UnityActivity" android:value="true" />
        </activity>
    </application>
</manifest>

详细步骤

涉及在Android原生开发。

创建Android Library

使用AndroidStudio,实现自定义的启动页面。

  1. 在AndroidStudio中新建一个Android Library模块

  2. 在Android Library模块中导入"unity-classes.jar"

"unity-classes.jar"可以通过任意Unity项目导出安卓工程的方式得到,也可去unity的git仓库获取。

定制启动页

  1. 创建EqSplashActivity.java(这里以"EqSplashActivity"为例,名称可修改)

  2. 编写安卓layout布局

启动页实现自由度很高,按你心意自定义即可。这里示例代码如下:

EqSplashActivity.java

java 复制代码
public class EqSplashActivity extends Activity {

    private VideoView videoView;

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

        setContentView(R.layout.activity_main);

        videoView = findViewById(R.id.video_view);

        String videoPath = "android.resource://" + getPackageName() + "/" + R.raw.start;
        Uri uri = Uri.parse(videoPath);
        // 设置视频源
        videoView.setVideoURI(uri);
        videoView.setOnCompletionListener(new MediaPlayer.OnCompletionListener() {
            @Override
            public void onCompletion(MediaPlayer mediaPlayer) {
                toUnityActivity();
            }
        });

        // 开始播放视频
        videoView.start();
    }

    /**
     * 转至UnityPlayerActivity
     */
    private void toUnityActivity() {
        try {
            Class<?> classtype = Class.forName("com.unity3d.player.UnityPlayerActivity");

            startActivity(new Intent(this, classtype));
            finish();
        } catch (ClassNotFoundException e) {
            Log.e(EqSplashActivity.class.getSimpleName(), "toUnityActivity: ", e);
        }

    }
}

activity_main.xml

xml 复制代码
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:background="#000"
    android:layout_height="match_parent">

    <VideoView
        android:layout_centerInParent="true"
        android:id="@+id/video_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>
</RelativeLayout>

导入AAR

  1. 在AndroidStudio中打包aar
  2. 将aar文件拷贝至Unity工程的Assets/...自定义路径.../Plugins/Android的目录下

在Unity端需要修改默认启动的Activity,和禁用启动logo。

  1. 禁用启动Logo

禁用启动Logo参考<<一个步骤跳过 Unity 启动Logo | 多平台适用 | 官方API支持>>

具体操作是在工程中创建一个脚本"SkipSplash.cs",无需挂载到游戏对象上,只要这个脚本放到除了Editor以外的文件夹就会生效。

c# 复制代码
#if !UNITY_EDITOR
using UnityEngine;
using UnityEngine.Rendering;

public class SkipSplash
{
    [RuntimeInitializeOnLoadMethod(RuntimeInitializeLoadType.BeforeSplashScreen)]
    private static void BeforeSplashScreen()
    {
#if UNITY_WEBGL
        Application.focusChanged += Application_focusChanged;
#else
        System.Threading.Tasks.Task.Run(AsyncSkip);
#endif
    }

#if UNITY_WEBGL
    private static void Application_focusChanged(bool obj)
    {
        Application.focusChanged -= Application_focusChanged;
        SplashScreen.Stop(SplashScreen.StopBehavior.StopImmediate);
    }
#else
    private static void AsyncSkip()
    {
        SplashScreen.Stop(SplashScreen.StopBehavior.StopImmediate);
    }
#endif
}
#endif

修改默认Activity

打开"Player Settings",启用自定义的AndroidManifest。

在Aseets/Plugins/Android目录下找到,AndroidManifest.xml,修改默认的Acitivity为"EqSplashActivity"。

示例如下:

xml 复制代码
<?xml version="1.0" encoding="utf-8"?>
<manifest
    xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.unity3d.player"
    xmlns:tools="http://schemas.android.com/tools">
    <application>
        <activity android:name="com.eqgis.unity.EqSplashActivity"
                  android:screenOrientation="landscape"
                  android:theme="@style/UnityThemeSelector">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
            <meta-data android:name="unityplayer.UnityActivity" android:value="true" />
        </activity>
    </application>
</manifest>
相关推荐
清风徐来辽3 分钟前
Android 项目模型配置管理
android
帅得不敢出门29 分钟前
Gradle命令编译Android Studio工程项目并签名
android·ide·android studio·gradlew
problc1 小时前
Flutter中文字体设置指南:打造个性化的应用体验
android·javascript·flutter
逐·風6 小时前
unity关于自定义渲染、内存管理、性能调优、复杂物理模拟、并行计算以及插件开发
前端·unity·c#
_oP_i8 小时前
Unity Addressables 系统处理 WebGL 打包本地资源的一种高效方式
unity·游戏引擎·webgl
帅得不敢出门11 小时前
安卓设备adb执行AT指令控制电话卡
android·adb·sim卡·at指令·电话卡
我又来搬代码了13 小时前
【Android】使用productFlavors构建多个变体
android
德育处主任15 小时前
Mac和安卓手机互传文件(ADB)
android·macos
芦半山15 小时前
Android“引用们”的底层原理
android·java
迃-幵15 小时前
力扣:225 用队列实现栈
android·javascript·leetcode