1
令我沮喪的是,工具欄標題在網絡圖像加載到圖像視圖後不斷消失。我試過以下所有關於stackoverflow在線的建議,他們都沒有工作...設計v24.2.1 CollapsingToolbarLayout中標題的問題
當我使用design v23.0.4時,這個問題沒有持續。
我正在使用Glide庫將圖像加載到ID爲networkImageView的ImageView中。
這是我刪除所有android:fitsSystemWindows =「true」屬性後的XML片段。 問題甚至刪除此屬性後仍繼續...
<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"
tools:context=".movies.moviedetails.MovieDetailsActivity">
<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsing_toolbar"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_scrollFlags="scroll|exitUntilCollapsed">
<ImageView
android:id="@+id/networkImageView"
android:layout_width="match_parent"
android:layout_height="200dp"
android:background="@android:color/white"
android:scaleType="centerCrop"
android:src="@drawable/backdrop_def_image"
app:layout_collapseMode="parallax" />
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_collapseMode="pin"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
請幫我解決這個問題。爲什麼Google會不斷向最新的設計庫重新引入錯誤?他們修復了一個版本中的錯誤,並在另一個版本中添加了相同的錯誤。
嘗試將版本從「24.2.1」更改爲此「24.1.1」。 – Ironman
這是一切的解決方案嗎?每次降級設計庫...我會盡力。 – oathkeeper
@Ironman,令人驚訝的是24.1.1的作品和錯誤消失。但我對解決方案並不滿意。感謝您的輸入... – oathkeeper