回答
讓你工具欄這樣
<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.PopupOverlay">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_error" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Did you know"
android:textColor="@android:color/white" />
<TextView
android:id="@+id/FactTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="demo text" />
<--> add here more controls<-->
</LinearLayout>
</Toolbar>
您可以使用以下方法:
一些真實的例子: https://antonioleiva.com/collapsing-toolbar-layout/ http://tutorialsbuzz.com/2015/11/android-collapsingtoolbarlayout-example_7.html
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
android:fitsSystemWindows="true">
<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"
app:contentScrim="?attr/colorPrimary"
app:expandedTitleMarginStart="48dp"
app:expandedTitleMarginEnd="64dp"
android:fitsSystemWindows="true">
<com.antonioleiva.materializeyourapp.SquareImageView
android:id="@+id/image"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scaleType="centerCrop"
android:fitsSystemWindows="true"
app:layout_collapseMode="parallax"/>
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:layout_collapseMode="pin" />
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
</android.support.design.widget.CoordinatorLayout>
儘管此鏈接可能會回答問題,但最好在此處包含答案的基本部分,並提供供參考的鏈接。如果鏈接頁面更改,則僅鏈接答案可能會失效。 –
@NileshRathod - 我已經完成了所需的更改,請求您刪除投票。 –
我沒有投票我只是建議你不要給鏈接在ans –
- 1. 如何使圖像按鈕顯示和工具欄的文本視圖中心?
- 2. 包含圖像和文本的按鈕
- 3. 更改工具欄按鈕的圖像
- 4. 24位工具欄按鈕圖像? (WinAPI)
- 5. 如何在按鈕中包含圖像或文本?
- 6. 如何編寫包含圖像,文本和按鈕的ListViewItem?
- 7. 工具欄包含操作欄文本
- 8. 如何更改工具欄中的按鈕文字顏色?
- 9. 在Ext JS分頁工具欄中刷新按鈕圖像
- 10. 圖像按鈕沒有像工具欄按鈕一樣工作的邊框?
- 11. 如何在包含圖像和文本的F#中創建按鈕?
- 12. 如何在win32中更改工具欄按鈕的位圖?
- 13. 如何在包含按鈕的Android標題欄中居中文字?
- 14. 如何使工具欄按鈕比工具欄更大?
- 15. 工具提示按鈕和圖像
- 16. iPhone攝像頭的工具欄按鈕
- 17. 如何在MFC工具欄中添加純文本按鈕
- 18. 在iOS的工具欄中包含UISearchBar
- 19. 如何更改工具欄按鈕
- 20. 如何禁用TTNavigator工具欄按鈕?
- 21. 安卓工具欄圖像居中與導航抽屜按鈕
- 22. 在iPad上的標籤欄按鈕和工具欄按鈕不工作
- 23. MATLAB:GUIDE「保存圖」工具欄按鈕
- 24. 按鈕具有圖像和文本
- 25. 如何在按鈕中添加圖像?圖像與文字
- 26. Excel的工具欄按鈕
- 27. 按鈕倒是工具欄
- 28. 工具欄按鈕樣式
- 29. Swing工具欄按鈕
- 30. UINavigationController工具欄按鈕
謝謝你這就是我想要的! –
@TomFinet如果這對你有幫助,請接受我的答案 –