python toolbar怎么改变图标大小

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python toolbar怎么改变图标大小相关的知识,希望对你有一定的参考价值。

参考技术A 如果故障依旧,可尝试下面的方法。右击桌面空白处,依次单击“属性/桌面/自定义桌面/web”选项,将“网页”栏中的“当前主页”以及“http//......”等所有各项前面的勾全部去掉(“http//……”为从Internet添加网页或图片的地址,一般不需要,可将它们全部删除),并将下面“锁定桌面项目”前面的勾也去掉,单击确定完成设置。

android toolbar

 http://www.jianshu.com/p/79604c3ddcae


/**
次主题是为了设置toolbar 右边的三个小点 改变其图标样式用的
*/
<style name="Theme.ToolBar.ZhiHu" parent="Theme.AppCompat.Light.NoActionBar">
<item name="actionOverflowButtonStyle">@style/ActionButton.Overflow.ZhiHu</item>
</style>

<style name="ActionButton.Overflow.ZhiHu" parent="android:style/Widget.Holo.Light.ActionButton.Overflow">
<item name="android:src">@mipmap/ic_launcher</item>
</style>

在layout中进行引用
<android.support.v7.widget.Toolbar
toolbar:popupTheme="@style/MyToolBarTheme"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/Theme.ToolBar.ZhiHu"
android:background="@android:color/holo_red_dark">

<!--自定义控件-->
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Clock" />
</android.support.v7.widget.Toolbar>

其中的theme就是这个作用
  android:theme="@style/Theme.ToolBar.ZhiHu"




这个是设置了toolbar
<!--ToolBar 样式-->
<style name="MyToolBarTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- toolbar颜色 -->
<item name="colorPrimary">@android:color/holo_red_dark</item>
<!-- 状态栏的颜色 -->
<item name="colorPrimaryDark">@android:color/holo_green_dark</item>
<item name="colorAccent">@android:color/holo_orange_dark</item>

<!--toolbar 上面的标题的颜色-->
<item name="android:textColorPrimary">@android:color/holo_orange_light</item>

<!-- toolbar的主题-->
<item name="toolbarStyle">@style/ClubToolbar</item>

<item name="contentInsetStart">0dp</item>
<item name="contentInsetEnd">0dp</item>


<!---->


</style>

<style name="ClubToolbar" parent="Widget.AppCompat.Toolbar">
<!-- 设置该属性解决空白部分-->
<item name="contentInsetStart">16dp</item>
<item name="contentInsetEnd">16dp</item>
</style>

<style name="Theme.ToolBar.ZhiHu" parent="Theme.AppCompat.Light.NoActionBar">
<item name="actionOverflowButtonStyle">@style/ActionButton.Overflow.ZhiHu</item>
</style>

<style name="ActionButton.Overflow.ZhiHu" parent="android:style/Widget.Holo.Light.ActionButton.Overflow">
<item name="android:src">@mipmap/ic_launcher</item>
</style>






以上是关于python toolbar怎么改变图标大小的主要内容,如果未能解决你的问题,请参考以下文章

CCS9 toolbar图标大小

怎样调整toolbar中setNavigationIcon的图标大小

怎样调整toolbar中setNavigationIcon的图标大小

Eclipse里如何调整Toolbar的大小?

android v7包里的Toolbar,怎么定制图标,字体居中的效果

如何在ToolBar中显示文字和图标,自定义图标大小,并和MenuItem关联