我想在我的應用程序中使用類似於@chrisbanses cheesesquare(https://github.com/chrisbanes/cheesesquare)的佈局。CollapsingToolbarLayout /工具欄保證金缺陷
Nexus 5,6的一切都很棒。但是當您在其他設備(如Samsung S6,Sony Z3 Compact)上測試它時,工具欄上的按鈕不可見。
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="@dimen/detail_backdrop_height"
android:fitsSystemWindows="true"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsing_toolbar"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:contentScrim="?attr/colorPrimary"
app:expandedTitleMarginEnd="64dp"
app:expandedTitleMarginStart="48dp"
app:layout_scrollFlags="scroll|exitUntilCollapsed">
<ImageView
android:id="@+id/backdrop"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
android:scaleType="centerCrop"
android:src="@drawable/default_vehicle"
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>
這是我的佈局。我找不到解決這個問題的方法。您可以嘗試在手機上運行Cheesesquare,例如帶有5.0.2 Android的Samsung S。我也測試過索尼設備。一樣。 Nexus手機都可以。
你有什麼想法如何解決這個問題嗎?
我使用com.android.support:design:22.2.0(最新版)
這個工程,但問題是,它清除了我在我的工具欄中的所有菜單項像導航抽屜的圖標。有什麼建議麼? – qazimusab