Android - 用加载动画替换跳帧

时间:2016-02-23 12:32:11

标签: java android android-layout android-studio

我在一个大约90-110帧的真实设备上跳帧的问题,但在模拟器上它只有20-30。 我遇到了这个问题,因为我在一个活动中有5个片段,每个片段都有15-30个按钮,这些按钮是LinearLayouts,因为我需要在一个Button中有两个图片和TextView,这似乎是一种方法。

这就是它跳帧的原因,我需要等待几秒才能打开活动。

这看起来不太好,因为我在片段中的数据不足,所以我决定创建加载动画。

但问题是,无论何时我创建它,遵循YouTube或StackOverflow上的各种教程,加载动画仅在活动打开时出现,并且当时没有使用它。

有谁知道解决方案?

活动xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    tools:context="hr.app.liftme.liftmehr.Vjezbe">

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/AppTheme.AppBarOverlay"
        android:elevation="0dp"
        app:elevation="0dp">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:popupTheme="@style/AppTheme.AppBarOverlay" />

    </android.support.design.widget.AppBarLayout>
    <include layout="@layout/content_vjezbe" />



</android.support.design.widget.CoordinatorLayout>

内容xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:elevation="0dp"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:context="hr.app.liftme.liftmehr.Vjezbe"
    tools:showIn="@layout/activity_vjezbe"
    android:id="@+id/loadingPanel">


    <android.support.design.widget.AppBarLayout
        android:layout_height="wrap_content"
        android:layout_width="match_parent"
        android:text="Vježbe"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">


        <android.support.design.widget.TabLayout
            android:id="@+id/tabLayout"
            app:tabMode="scrollable"
            app:tabGravity="fill"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">


        </android.support.design.widget.TabLayout>

        <android.support.v4.view.ViewPager

            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:id="@+id/viewPager"
            android:background="#ffffff">

        </android.support.v4.view.ViewPager>

    </android.support.design.widget.AppBarLayout>

</LinearLayout>

2 个答案:

答案 0 :(得分:0)

您可以查看已在Android的新Material Design Libraries中添加的品牌启动主题,以防止应用程序冷启动并替换加载动画。 There's a really good article here by Antonio Leiva.

答案 1 :(得分:0)

您可以在XML中插入一个布局(例如,带有背景颜色的RelativeLayout和一个微调器),它可以占用所有屏幕尺寸。加载完片段后,将该布局的可见性设置为Gone