toolbar 相关问题

工具栏标签用于与工具栏的配置,设计和使用相关的问题。

Coreldraw X3:在工具栏上添加宏

我一直通过“工具”->“Visual Basic”->“播放”使用宏。 有人知道如何将此宏添加到工具栏上吗? 蒂亚!

回答 2 投票 0

如何在窗口底部添加工具栏?

在我的 macOS 应用程序上,顶部有一个主工具栏。 但是,我想在底部添加一个新的底部工具栏(较小)。 像这样的例子: 似乎无法像在 iOS 上那样在 macOS 上执行此操作: .

回答 2 投票 0

带有 SwiftUI 的 macOS 底部的工具栏

在我的 macOS 应用程序上,顶部有一个主工具栏。 但是,我想在底部添加一个新的底部工具栏(较小)。 像这样的例子: 似乎无法像在 iOS 上那样在 macOS 上执行此操作: .

回答 2 投票 0

当我在 SwiftUI 中应用工具栏配色方案修改器时,为什么底部工具栏项目的位置会发生变化?

因此,当工具栏项目超过 2 个时,默认项目位置是左侧层次结构中的所有项目 (ToolbarItem) 和右侧层次结构中的最后一个项目 (ToolbarItem)。 之后...

回答 1 投票 0

Excel VBA 在我打开的文件中隐藏 Excel 工具栏、功能区等,而不会弄乱任何其他打开的工作簿

我使用以下代码隐藏所有栏并打开工作簿以提供应用程序的外观。从现在开始,我将其称为我的 EXCEL 应用程序样式文件。 我用来隐藏所有内容并定义......的代码

回答 3 投票 0

如何解析位置:针对 iOS (iPhone/iPad) 上的底部工具栏进行了修复

我有一个栏,通过使用position:fixed固定在我网站上每个页面的底部。问题在于,在 iPhone 或 iPad 等设备上,此属性不受尊重。 我尝试使用java...

回答 10 投票 0

WPF 名称/图像未显示在设计视图中

我正在开发一个 Visual Studio 扩展,使用 CrispImage UIElement 和此处的名字功能。然而,尽管在运行时显示,但它们在设计时并不显示。还在

回答 1 投票 0

使用热图+散点自动缩放图形会引入额外的填充

以下代码 将 numpy 导入为 np 导入plotly.graph_objects作为go def make_blob(n: int) -> np.ndarray: xx, yy = np.meshgrid(np.arange(n), np.arange(n)) 返回 np.exp(-((xx - n // 2) *...

回答 1 投票 0

如何在 SSMS 版本之间传输工具栏布局?

我已从 SSMS 19 升级到 20。我的键盘快捷键和窗格的位置(例如对象资源管理器)已被记住,但我的工具栏中的项目和这些工具的位置...

回答 1 投票 0

Android 工具栏出现在屏幕底部而不是顶部

我试图在事件发生后在屏幕底部设置一个工具栏,但该工具栏被绑定到屏幕顶部。知道如何将其设置在屏幕底部吗? 应用程序:第...

回答 3 投票 0

将 UIBarButtonItem 数组转换为 ToolbarItem 数组

我是 swiftUI 新手。我们的项目中有 UIKit 和 swiftUI 代码,并且有一些自定义逻辑来添加一些 UIBarButtonItem。我需要传递 viewController.navigationItem.rightBarButtonItems 数组

回答 1 投票 0

鹅毛笔编辑器工具栏下拉列表未显示

这是react-quill编辑器的配置。 const 工具栏选项 = [ [{ '尺寸': ['小', false, '大', '巨大'] }], [{ '标题': 1 }, { '标题': 2 }], [‘粗体’、‘斜体’、‘下划线’、‘...

回答 1 投票 0

Intellij PyCharm/Idea/etc:如何添加运行 shell 脚本的工具栏按钮?

在 Intellij IDE(例如 PyCharm 或 Idea)中,有一个选项可以通过右键单击工具栏并选择“自定义菜单和工具栏”来自定义菜单和工具栏。虽然可以选择

回答 1 投票 0

如何在 MacOS 上的 SwiftUI 中的窗口顶部设置多个工具栏

我有类似的东西,两个工具栏都在同一行。我希望它们都堆叠在一起。一个工具栏位于另一个工具栏之上: 结构 ToolbarView: 视图 { @ObservedObject v...

回答 1 投票 0

如何在不同的 Activity 中的工具栏上添加不同的按钮?

这是我的activity_main.xml,它有一个基本的工具栏和右侧的两个按钮(以及一个导航视图): 这是我的 activity_main.xml,它有一个基本的 Toolbar 和右侧的两个 Button(还有一个 NavigationView): <?xml version="1.0" encoding="utf-8"?> <androidx.drawerlayout.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@drawable/mxhbg" android:id="@+id/drawer_layout" android:fitsSystemWindows="true" tools:context="com.myapp.MainActivity" tools:openDrawer="start"> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:background="@drawable/mxhbg" android:orientation="vertical" android:keepScreenOn="true" android:weightSum="10"> <LinearLayout android:layout_width="match_parent" android:layout_height="54dp" android:orientation="horizontal"> <androidx.appcompat.widget.Toolbar android:id="@+id/toolbar" android:layout_width="match_parent" android:layout_height="?attr/actionBarSize" android:background="@color/colorPrimary" android:elevation="4dp" android:popupTheme="@style/ThemeOverlay.AppCompat.Light" android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> <Button android:id="@+id/btnRandom" android:layout_width="30dp" android:layout_height="30dp" android:layout_alignParentEnd="true" android:layout_centerVertical="true" android:layout_gravity="end" android:layout_marginEnd="16dp" android:background="@drawable/ic_shuffle"> </Button> <Button android:id="@+id/btnRescanSongs" android:layout_width="30dp" android:layout_height="30dp" android:layout_alignParentEnd="true" android:layout_centerVertical="true" android:layout_gravity="end" android:layout_marginEnd="16dp" android:background="@android:drawable/stat_notify_sync"> </Button> </androidx.appcompat.widget.Toolbar> </LinearLayout> // other stuff </LinearLayout> <com.google.android.material.navigation.NavigationView android:layout_width="wrap_content" android:layout_height="match_parent" android:layout_gravity="start" android:id="@+id/nav_view" app:headerLayout="@layout/nav_header" app:menu="@menu/drawer_menu"> </com.google.android.material.navigation.NavigationView> </androidx.drawerlayout.widget.DrawerLayout> 我这样在MainActivity上设置它: setContentView(R.layout.activity_main); toolbar = findViewById(R.id.toolbar); setSupportActionBar(toolbar); 现在,在另一个 Activity (SyncActivity) 上,我想显示相同的 Toolbar,但右侧有不同的图标。 正确的做法是什么? 在activity_sync.xml上执行此操作: <?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@drawable/mxhbg" tools:context=".SyncActivity"> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:background="@drawable/mxhbg" android:orientation="vertical" android:keepScreenOn="true" android:weightSum="10"> <LinearLayout android:layout_width="match_parent" android:layout_height="54dp" android:orientation="horizontal"> <androidx.appcompat.widget.Toolbar android:id="@+id/toolbar" android:layout_width="match_parent" android:layout_height="?attr/actionBarSize" android:background="@color/colorPrimary" android:elevation="4dp" android:popupTheme="@style/ThemeOverlay.AppCompat.Light" android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> <Button android:id="@+id/btnRescanSongs" android:layout_width="30dp" android:layout_height="30dp" android:layout_alignParentEnd="true" android:layout_centerVertical="true" android:layout_gravity="end" android:layout_marginEnd="16dp" android:background="@android:drawable/stat_notify_sync"> </Button> </androidx.appcompat.widget.Toolbar> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="9"> <ListView android:id="@+id/log" android:layout_width="match_parent" android:layout_height="match_parent" android:divider="@android:color/transparent" android:dividerHeight="10.0sp" android:padding="8dp"> </ListView> </LinearLayout> </LinearLayout> </androidx.constraintlayout.widget.ConstraintLayout> 以及 SyncActivity: setContentView(R.layout.activity_sync); Objects.requireNonNull(getSupportActionBar()).setTitle("Sync"); getSupportActionBar().setDisplayHomeAsUpEnabled(true); getSupportActionBar().setDisplayShowHomeEnabled(true); 它在主要的下方添加了一个新的 Toolbar。 另外:为什么主Toolbar上的图标没有显示在其他活动上?看来是把他们藏起来了?为什么? 您可以从布局 xml 中删除所有工具栏按钮并将它们移动到菜单 xml 中。 文件:res/menu/yourmenuname.xml <menu xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"> <item android:id="@+id/menu_rescan_songs" android:icon="@android:drawable/stat_notify_sync" android:title="@string/menu_rescan_songs" app:showAsAction="always"/> </menu> 请注意,您还必须提供标题,而不仅仅是图标,您可以使用 showAsAction 与 always 来始终显示图标,或者 ifRoom 或 ifRoom|withText 只是尝试您最喜欢的内容。 然后你覆盖这个函数并加载你的菜单 @Override public boolean onCreateOptionsMenu(Menu menu) { getMenuInflater().inflate(R.menu.yourmenuname,menu); return super.onCreateOptionsMenu(menu); } 要处理菜单操作,请使用: @Override public boolean onOptionsItemSelected(MenuItem item) { // Handle item selection switch (item.getItemId()) { case R.id.menu_rescan_songs: doSomething(); return true; // case R.id.action_settings: // in case you need an extra button on // startSettings(); // on this activity // return true; default: return super.onOptionsItemSelected(item); } } 您可以使用菜单做很多事情,在这里添加一些链接可以帮助您继续阅读它们: https://developer.android.com/guide/topics/resources/menu-resource https://developer.android.com/guide/fragments/appbar

回答 1 投票 0

如何修复 Text("").toolbar 导致内容空间顶部出现死角

我的工具栏视图导致了问题。致电给 Text( "" ).toolbar 正在将添加死空间放置在顶部 内容窗口空间。我尝试过替换 Text() 与...

回答 1 投票 0

MacCatalyst 工具栏的高度随着 .principal 放置 (SwiftUI) 的增加而增加

我正在开发一个带有简单导航视图和工具栏的 macCatalyst 应用程序。 一旦我给我的toolbarItem .principal 位置,工具栏的高度就会增加(几乎加倍)。在今...

回答 1 投票 0

如何在工具栏视图中使用 for 循环?

我写了类似下面的代码。创建菜单信息 (MenuInfo) 结构并在 MenuInfo 数组中创建一些菜单项。我现在正在尝试遍历这些来创建......

回答 1 投票 0

工具栏和状态栏半透明背景

您好根据上图,我想将我的工具栏和状态栏设置为白色,以便可以看到背景 在此输入图像描述 在此输入图片描述

回答 1 投票 0

标题图像未在工具栏中居中

我正在玩 Codenameone 教程之一中的 Netflix 克隆应用程序。我注意到在模拟器中,“Netflix”图像标题没有按照预期居中......

回答 1 投票 0

© www.soinside.com 2019 - 2024. All rights reserved.