单个Activity应用中的启动画面方法

时间:2018-10-16 12:41:06

标签: android android-activity kotlin architecture splash-screen

我正在尝试确定创建应用程序启动屏幕的最佳方法,同时考虑到Google在可能的情况下选择单个Activity应用程序的最新建议。

查看此处:

"The new approach is to use one-activity structure whenever possible."

在这里:

"Today we are introducing the Navigation component as a framework for structuring your in-app UI, with a focus on making a single-Activity app the preferred architecture."

我发现任何好的启动屏幕方法都有一个专门的启动屏幕活动:

See here

and here

其他人有没有在单个Activity应用程序中创建启动画面的经验?单个“活动”建议是否包含启动屏幕,或者是特殊情况?有人对此有任何好的例子或建议吗?

干杯, 保罗。

2 个答案:

答案 0 :(得分:1)

如果您在布局中使用ConstraintLayout,则可以使用Android的Group类对多个视图进行分组。请参阅以下链接以获取更多信息。

https://developer.android.com/reference/android/support/constraint/Group

此类控制一组引用的窗口小部件的可见性。通过将小部件添加到以逗号分隔的ID列表中来对其进行引用,例如:

 <android.support.constraint.Group
          android:id="@+id/group"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:visibility="visible"
          app:constraint_referenced_ids="button4,button9" />

仅供参考-多个组可以引用相同的小部件-在这种情况下,XML声明顺序将定义最终的可见性状态(最后声明的组将具有最后一个单词)。

希望这可以帮助您解决问题。

答案 1 :(得分:1)

我使用的方法如下:

首先为背景定义一个可绘制对象:

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

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

    <item>
        <bitmap
            android:gravity="center"
            android:src="@mipmap/ic_launcher"/>
    </item>

</layer-list>

2。定义要在splashScreen中使用的新样式:

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

3。使您的活动工具使用启动主题:

<activity
    android:name=".MainActivity"
    android:theme="@style/SplashTheme">
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
</activity>

4。在创建时,在超级调用之前和设置内容视图之前,设置默认应用程序主题:

override fun onCreate(savedInstanceState: Bundle) {
    setTheme(android.R.style.AppTheme)
    super.onCreate(savedInstanceState)
    setContentView(R.layout.activity_main);
}

这种方法是我在多个活动中都一直使用的方法,因为它遵循了google制定的准则:它可以立即显示启动画面,并且不会停留超过所需的时间。