我需要在工具欄中部分顯示圖像,部分在視圖中。我沒有找到好的例子,也許有人知道如何做到這一點?我目前在Xamarin工作,但Android Studio的示例將對您有所幫助。在工具欄中添加圖像,但它必須大於工具欄
1
A
回答
2
使用CoordinatorLayout
和layout_anchor
:
<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.support.design.widget.AppBarLayout android:id="@+id/app_bar"
android:layout_width="match_parent" android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.ActionBar">
<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"/>
</android.support.design.widget.AppBarLayout>
<ImageView android:id="@+id/image_anchored"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:layout_margin="16dp" android:src="@drawable/image_anchor"
app:layout_anchor="@id/app_bar" app:layout_anchorGravity="bottom|start|left"/>
</android.support.design.widget.CoordinatorLayout>
0
或許創造了一個ActionBar的自定義視圖?
而且你也可以爲ActionBar設置自定義高度。 然後我認爲你的內容可以落後於ActionBar。你也可以在ActionBar上使用透明度。
相關問題
- 1. 添加圖像到工具欄
- 2. 在android工具欄中添加視圖
- 3. 如何在工具欄下添加工具欄 - android
- 4. 添加工具欄到INAppStoreWindow
- 5. 自動添加工具欄
- 6. ExtJS MVC添加工具欄
- 7. 如何添加工具欄
- 8. 添加工具欄JSQMessagesViewController
- 9. 工具欄圖像錯誤
- 10. 添加工具欄項目或按鈕DetailViewController工具欄的iPad
- 11. 添加工具欄項目上默認的工具欄
- 12. 如何在摺疊工具欄佈局中添加18dpx18dp大小的標題權利?但不是在工具欄
- 13. 在VB.Net的datagridview中添加工具欄
- 14. 在工具欄中添加tablayout
- 15. 在gmail頁面中添加工具欄
- 16. 將圖標添加到Extjs工具欄
- 17. 將工具欄添加到視圖
- 18. FF插件工具欄 - 添加的東西位於工具欄的右側
- 19. 在工具欄
- 20. 第二個工具欄就像在郵件+工具欄上NSScrollView
- 21. Magento:在補充工具欄中添加登錄/ MyAccount小工具
- 22. 如何添加自定義圖標stimulsoft工具,工具欄
- 23. 如何以編程方式在工具欄面板中添加工具欄?
- 24. tinymce工具欄浮動工具欄
- 25. 工具欄vs appcompat v7-21工具欄
- 26. 所有視圖中的工具欄(全局工具欄)
- 27. 在uikeyboard上添加工具欄
- 28. 如何使工具欄按鈕比工具欄更大?
- 29. 工具欄工具 - 位圖切換
- 30. 我們如何重複添加工具欄中的圖像?
我相信做到這一點的最佳方法是在工具欄底部製作一條半透明線條。幾周前我讀了一個關於它的問題,我會看看我能否找到它 – LBJ33
http://stackoverflow.com/questions/39380159/how-do-i-make-an-icon-seem-like-it-sticks退房手續的最-工具欄 – LBJ33