0
A
回答
0
您可以簡單地使用工具欄作爲操作欄。 工具欄是一個ViewGroup,您可以爲其添加任何自定義視圖。
例如:
<LinearLayout
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:orientation="vertical">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:minHeight="?attr/actionBarSize"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:titleTextColor="@android:color/white"
android:background="?attr/colorPrimary">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<YourViewHere/>
</LinearLayout>
</android.support.v7.widget.Toolbar>
,並在您的活動:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_my);
// Find the toolbar view inside the activity layout
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
// Sets the Toolbar to act as the ActionBar for this Activity window.
// Make sure the toolbar exists in the activity and is not null
setSupportActionBar(toolbar);
}
相關問題
- 1. 動作欄微調器定製
- 2. 自定義標題欄的動作欄
- 3. Android微調自定義?
- 4. android:自定義微調器
- 5. 自定義android微調?
- 6. 微調自定義baseadapter
- 7. 自定義微調樣式
- 8. android自定義微調器
- 9. 自定義android微調
- 10. 自定義微調背景
- 11. 自定義微調器Android?
- 12. Android自定義微調器
- 13. 如何從片段中心在操作欄中的微調器
- 14. 如何從自定義微調Android中
- 15. android中的自定義微調錯誤
- 16. 動作欄微調不匹配樣式,黑色微調文本
- 17. 動作欄自定義視圖
- 18. Android - 自定義風格的動作欄
- 19. 造型微調操作欄
- 20. 自定義操作欄
- 21. 自定義操作欄
- 22. 自定義操作欄sherlock
- 23. 自定義操作欄Sherlock
- 24. 中心動作欄標題
- 25. 活動組內自定義列表中的微調問題
- 26. 在android中自定義動作欄首先顯示默認動作欄
- 27. 自定義微調項目不作爲微調項目的一部分出現
- 28. 自定義微調視圖(不想彈出微調)
- 29. 自定義ArrayAdapter自定義微調器在不同的文件
- 30. 自定義微調器與動態對象和動態圖標