Facing issue using Action Bar in Python kivy Application(在 Python kivy 应用程序中使用操作栏面临的问题)
问题描述
我正在使用 Kivy 开发应用程序.我正在使用 Kivy ActionBar 为我的应用程序创建一个菜单栏.
I am working on developing an application using Kivy. I am using Kivy ActionBar for creating a menu bar for my application.
请参考附图
我想删除 Kivy 图标并将其他选项(文件/编辑)移动到左侧.请找到我的代码片段.
I want to remove the Kivy icon and move the other options(file / edit) to the left. Please find the snippet of my code.
menuAcBar = ActionBar(pos_hint={'top': 1.3})
menuAcView = ActionView()
menuAcBar.add_widget(menuAcView)
menuAcPrevious = ActionPrevious(with_previous=False)
menuAcView.add_widget(menuAcPrevious)
menuAcView.add_widget(ActionButton(text="File"))
menuAcView.add_widget(ActionButton(text="Edit"))
menuAcView.add_widget(ActionButton(text="Documents"))
menuAcView.add_widget(ActionButton(text="help"))
self.add_widget(menuAcBar)
推荐答案
在ActionPrevious
上可以设置app_icon
.docs 中略低一些.您可以为图标的大小设置 app_icon_width/height
,甚至可以使用 app_icon=''
将其删除,但它会留下白色矩形而不是透明".保留 app_icon 并仅设置宽度和高度使其不可见.
Right on ActionPrevious
you can set app_icon
. It's a little bit lower in docs. You can set app_icon_width/height
for size of the icon or even remove it with app_icon=''
, but it'll leave white rectangle instead of a "transparent". Leave app_icon be and set only width and height to make it invisible.
ĄctionPrevious
具有 ActionItem
的 minimum_width 属性,因此您需要像这样更改它:
The ĄctionPrevious
has ActionItem
's minimum_width property, therefore you need to change it like this:
menuAcPrevious = ActionPrevious(with_previous=False,
app_icon=<your_image>,
app_icon_width=1,
app_icon_height=0,
minimum_width=10,
size_hint_x: None)
似乎 ActionPrevious
留下了额外的未使用空间,即使 title=''
和 minimum_width=1
并且您无法通过孩子访问该死的东西因为它是 未注册,所以我唯一的想出的是调整它的大小,这样你就不会再看到它了:
It seems that ActionPrevious
leaves additional unused space even if title=''
and minimum_width=1
and you can't access the damn thing through children because it's unregistered, therefore the only thing I came up with is resizing it so you won't see it anymore:
ActionPrevious(
size_hint_x = None,
width = 0,
app_icon_width = 0.1,
with_previous = False)
这篇关于在 Python kivy 应用程序中使用操作栏面临的问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 Python kivy 应用程序中使用操作栏面临的问题


基础教程推荐
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- 筛选NumPy数组 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01