Android ToolBar 修改边距的实现方法
更新时间:2017年08月25日 10:57:22 作者:Alter
这篇文章主要介绍了Android ToolBar 修改边距的实现方法的相关资料,通过此文希望能帮助到大家,需要的朋友可以参考下
Android ToolBar 修改边距的实现方法
效果图:
实现方式:
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/menuToolbar" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="0dp" android:background="@color/white" android:contentInsetLeft="10dp" android:contentInsetRight="10dp" android:contentInsetStart="10dp" android:minHeight="?attr/actionBarSize" android:padding="0dp" app:contentInsetLeft="10dp" app:contentInsetRight="10dp" app:contentInsetStart="10dp"></android.support.v7.widget.Toolbar>
如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
相关文章
Android SharedPreferences存取操作以及封装详解
SharedPreferences是安卓平台上一个轻量级的存储类,用来保存应用的一些常用配置,比如Activity状态,Activity暂停时,将此activity的状态保存到SharedPereferences中;当Activity重载,系统回调方法onSaveInstanceState时,再从SharedPreferences中将值取出2021-11-11Android ImageView Src 和Background 区别
这篇文章主要介绍了Android ImageView Src 和Background 区别的相关资料,需要的朋友可以参考下2016-09-09Android中在GridView网格视图上实现item拖拽交换的方法
这篇文章主要介绍了Android中在GridView上实现item拖拽交换效果的方法,比起ListView的列表条目交换稍显复杂,文中先介绍了关于创建GridView的一些基础知识,需要的朋友可以参考下2016-04-04android尺子的自定义view——RulerView详解
这篇文章主要介绍了android尺子的自定义view——RulerView详解,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧2020-03-03
最新评论