是否可以向Android操作栏添加自定义按钮?

时间:2015-02-16 22:35:29

标签: android user-interface

我想为列表添加两个按钮,像这样添加Map。

Action bar with List and Map Buttons

2 个答案:

答案 0 :(得分:1)

我会使用新的工具栏小部件,因为工具栏只是一个ViewGroup,你可以添加你想要的任何东西:

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimaryDark"
android:minHeight="?attr/actionBarSize"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

<Button
   android:id="@+id/btn_id"
   android:layout_width=""
   android:layout_height=""/>

</android.support.v7.widget.Toolbar>

答案 1 :(得分:0)

是的。您可以在ActionVar上设置自定义视图

ActionBar actionBar = getActionBar();
actionBar.setCustomView(R.layout.your_layout);
actionBar.setDisplayShowCustomEnabled(true);