我在我的应用程序中添加了大约8个月前的ActionBar
。
现在我已经读过Toolbar
有更多功能我想将Toolbar
添加为ActionBar
。
我添加了这个:
<android.support.v7.widget.Toolbar
android:id="@+id/listview_toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/kevox"
android:elevation="4dp"
android:theme="@style/MyActionBar" />
on android:elevation="4dp"
我收到消息,在minSdkVersion = 17中忽略了这个函数。
正如您所看到的,MenuItem
之类的Button
并未填满整个Toolbar
。
在此SDK版本中使用工具栏是一个好主意吗?正如我在统计数据中看到的那样,API 17-19仍然是最常用的Android版本。