我使用非常简单的样式来设置工具栏格式,使用android:elevation在工具栏下显示阴影,如下所示:
<style name="AppToolbartheme" parent="Apptheme"> <item name="androID:background">@color/colorPrimary</item> <item name="androID:TitleTextcolor">@androID:color/white</item> <item name="androID:elevation">4dip</item></style>
我正在像这样简单地应用它:
<Toolbar androID:ID="@+ID/main_toolbar" androID:layout_wIDth="match_parent" androID:layout_height="wrap_content" androID:theme="@style/AppToolbartheme"/>
阴影显示在工具栏下方,就像我想要的一样,但是它也以某种方式应用于看起来很奇怪的工具栏标题:
解决方法:
删除< item name =“ androID:elevation”> 4dip< / item>从样式并将其放在工具栏xml中
<Toolbar androID:ID="@+ID/main_toolbar" androID:layout_wIDth="match_parent" androID:layout_height="wrap_content" androID:theme="@style/AppToolbartheme" androID:elevation="4dp"/>
总结 以上是内存溢出为你收集整理的android:elevation应用于工具栏及其标题全部内容,希望文章能够帮你解决android:elevation应用于工具栏及其标题所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)