我在Github中有以下项目:https://github.com/Ali-Rezaei/Contacts
当我启动应用程序(创建应用程序的新实例)时,进度条图像在几毫秒内仍不清楚,但稍后会按预期出现:
我意识到这是由于MainActivity中的ViewPager造成的:
<?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="wrap_content"
android:layout_height="wrap_content"
tools:context=".ui.MainActivity">
<android.support.v4.view.ViewPager
android:id="@+id/view_pager"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_behavior=".behavior.QuickHideBehavior">
<com.sample.android.contact.widget.ListenableTabLayout
android:id="@+id/tab_layout"
android:layout_width="match_parent"
android:layout_height="48dp"
android:layout_alignParentBottom="true"
android:background="@color/colorPrimary"
app:tabIndicatorHeight="2dp"
app:tabSelectedTextColor="@color/colorAccent"
app:tabTextColor="@android:color/white" />
</android.support.design.widget.CoordinatorLayout>
当我删除ViewPager时,进度栏图像会按预期出现在开始位置。
这是我在ViewPager片段中的imageView:
<?xml version="1.0" encoding="utf-8"?>
<com.sample.android.contact.widget.NestedCoordinatorLayout 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"
tools:context=".ui.ContactsFragment">
<android.support.design.widget.AppBarLayout
android:id="@+id/appBarLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<Toolbar
android:layout_width="match_parent"
android:layout_height="?android:actionBarSize"
app:layout_scrollFlags="scroll|enterAlways">
</android.support.design.widget.AppBarLayout>
<com.sylversky.indexablelistview.widget.IndexableRecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layoutManager="LinearLayoutManager"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
<ImageView
android:id="@+id/progressBar"
android:layout_width="170dp"
android:layout_height="170dp"
android:layout_gravity="center"
tools:ignore="contentDescription"
tools:src="@drawable/loading_animation" />
</com.sample.android.contact.widget.NestedCoordinatorLayout>
当我使用Handler post delay设置图像时,它再次出现如预期的那样:
mHandler.postDelayed(() -> mProgressBar.setImageResource(R.drawable.loading_animation), 0);
但不使用Handler,目前尚不清楚。
可能是什么原因以及如何解决?
这是loading_animation:
<animated-rotate xmlns:android="http://schemas.android.com/apk/res/android"
android:drawable="@drawable/loading_img"
android:pivotX="50%"
android:pivotY="50%" />