preview 相关问题

用户界面操作,用于显示实际项目的初步或缩小版本。

更新到 Xcode 16 后出现“Duplicate -rpath '@executable_path'被忽略”警告

升级到 Xcode 16 后,我收到警告 Duplicate -rpath '@executable_path'被忽略 当我清理项目并删除派生数据时,警告消失。即使我建造了它之后,还有

回答 1 投票 0

如何在 WPF 中的工具提示中显示选项卡内容的预览?

我正在使用 TabControl 开发 WPF 应用程序,我希望通过将鼠标悬停在选项卡标题上时在其工具提示中显示每个选项卡内容的实时预览来增强用户体验。 我的...

回答 1 投票 0

HTML span 元素未打印

我正在创建一个自定义彩色图例,并尝试使用自定义 CSS 添加 以创建一个具有背景颜色的圆形,如示例中所示。

回答 1 投票 0

如何去掉链接预览中的“一个新的flutter项目”?

我创建了一个 flutter web 项目。 在其中,我更新了 pubspec.yaml 中的描述以及“web”文件夹内的 index.html 中的标题+描述。 然而,预览

回答 2 投票 0

无法生成我们网站网页的链接预览

我创建了一个 React SPA。但是当我共享链接时,它既不生成链接预览,也不生成描述和标题。我使用来自 metatags.io 的元标签进行预览,但它不起作用。这我们...

回答 1 投票 0

“需要新构建系统”的 SwiftUI 预览错误

我的环境是: Xcode 15.0 斯威夫特5 最低部署:iOS 13 我的项目是 UIKit,但是当我使用 SwiftUI 文件时,出现错误“需要新的构建系统”,如何修复它? 我不能...

回答 1 投票 0

iOS 5 后置摄像头非全屏模式预览

我只是想知道这是否可能: 我一直在寻找各种显示相机预览的解决方案;虽然在全屏模式下这样做相对简单,但我想要什么......

回答 1 投票 0

在 VSCode 预览中悬停时是否可以在文件名之前显示文件夹名称?

当我将鼠标悬停在任务栏上的 VSCode 上时,它将显示打开文件夹的预览 现在它在文件夹名称之前显示文件名。有时文件名太长,导致文件夹名称变喜...

回答 1 投票 0

LiveEdit 在 Android Studio 中无法工作:内部错误 ClassCastException BasicValue 无法转换为 IntValue

我在项目中使用jetpack compose。 我正在使用 android studio Koala 2024.1.2 Patch 1。我使用的所有内容几乎都是最新版本。 我有一个简单的可组合屏幕(一堆可组合

回答 1 投票 0

Android 预览不显示自定义视图,但在设备上可见

我有以下自定义视图: 我有以下自定义视图: <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="wrap_content"> <Button android:id="@+id/declineButton" android:layout_height="wrap_content" android:layout_width="wrap_content" app:layout_constraintTop_toTopOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintEnd_toStartOf="@+id/confirmButton" android:layout_marginTop="0dp" android:layout_marginBottom="0dp" android:layout_marginStart="16dp" android:layout_marginEnd="16dp" android:text="decline"/> <Button android:id="@+id/confirmButton" android:layout_height="wrap_content" android:layout_width="wrap_content" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintTop_toTopOf="@id/declineButton" app:layout_constraintBottom_toBottomOf="@id/declineButton" app:layout_constraintStart_toEndOf="@id/declineButton" android:layout_marginTop="0dp" android:layout_marginBottom="0dp" android:layout_marginEnd="16dp" android:layout_marginStart="16dp" android:text="confirm"/> </androidx.constraintlayout.widget.ConstraintLayout> 在此布局的预览中,按钮按预期显示。 但是,如果我采用该自定义视图并将其放入我的活动中: <?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="@color/backgroundColor"> <TextView android:id="@+id/textAbove" style="@style/someStyle" android:layout_width="0dp" android:layout_height="wrap_content" app:layout_constraintTop_toBottomOf="@id/something" app:layout_constraintBottom_toTopOf="@id/buttons" app:layout_constraintStart_toStartOf="parent" app:layout_constraintEnd_toEndOf="parent" android:layout_marginTop="16dp" android:layout_marginStart="16dp" android:layout_marginEnd="16dp" android:text="text above"/> <MyCustomButtonsView android:id="@+id/buttons" android:layout_width="match_parent" android:layout_height="wrap_content" app:layout_constraintStart_toStartOf="parent" app:layout_constraintBottom_toTopOf="@id/textBelow" app:layout_constraintTop_toBottomOf="@id/textAbove"/> <TextView android:id="@+id/textBelow" style="@style/someStyle" android:layout_width="wrap_content" android:layout_height="wrap_content" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintEnd_toEndOf="parent" android:layout_marginBottom="16dp" android:text="text below"/> </androidx.constraintlayout.widget.ConstraintLayout> 按钮不会在预览中显示,因为自定义视图的高度为 0: 所以,如果我将 tools:layout_height="80dp" 添加到 MyCustomButtonsView <MyCustomButtonsView android:id="@+id/buttons" android:layout_width="match_parent" android:layout_height="wrap_content" tools:layout_height="80dp app:layout_constraintStart_toStartOf="parent" app:layout_constraintBottom_toTopOf="@id/textBelow" app:layout_constraintTop_toBottomOf="@id/textAbove"/> 这表明按钮本身就是问题,因为视图变大了,但按钮仍然不显示: 问题是,如果我在设备上运行该应用程序,按钮会按预期显示(无需像 tools 行中那样设置特定高度)。 我想知道的是为什么会发生这种情况以及如何避免它。 看起来这只是 Android Studio 中的一个小故障。在问这个问题之前我已经重建并重新启动,但没有帮助。一天后,我打开 Android Studio,你瞧,它正确地显示了按钮。所以我想重新启动整个系统可能是一个解决方案。 对于我的情况,我只是忘记在设计选项卡中更改主题,因为我是 Android 新手 在此之前 之后 对我来说我愿意 构建 -> 制作项目。 我认为刷新整个系统也会触发make项目 原答案: https://stackoverflow.com/a/43291439/10734372

回答 3 投票 0

如何在 tmux 中使 Ranger 图像预览工作

我是 Ranger(文件管理器)的忠实粉丝,最近我开始使用 tmux,这非常酷。我发现当在 tmux 之外使用 ranger 时,图像预览效果很好。我就是我们...

回答 1 投票 0

为超链接创建预览选项卡

让显示=假; 函数显示预览(){ 显示=真; } 函数隐藏预览(){ 显示=假; } &...

回答 1 投票 0

管理面板的 WordPress 样式

我正在开发一个 WordPress 网站。 一个部分的前端工作正常。 但该部分在管理面板预览区域中被破坏。 到目前为止我所寻找的已经引导我......

回答 1 投票 0

问:如何关闭 Android Studio 中的自动预览?

Android Studio IDE 破坏 GUI 问题图像位于 - https://i.sstatic.net/zEKFo.jpg 我的 Android Studio 显示在代码编辑器中光标位置生成的一个或多个预览窗口

回答 2 投票 0

为什么我的 Vite 构建/预览不起作用?

我尝试构建我的 Vite + React 应用程序,但是当我执行 npm run Preview 时,页面变为空白。 vite.config.js 从“rollup-plugin-peer-deps-external”导入外部; 从 &

回答 1 投票 0

使用CameraPreview时,相机屏幕处于横向模式且长宽比略有偏差

问题: 使用 CameraPreview 时,相机屏幕处于横向模式,并且长宽比略有偏差。这很奇怪,因为相同的代码在其他项目中运行良好。 什么可以...

回答 1 投票 0

在 SharePoint 上使用 Graph API,如何确定用户是否有权访问某些项目

使用图形API 我们在 Sharepoint 驱动器上托管一些文件,并使用它进行文件预览。效果很好,我可以使用此 API 网址查看预览: GET /drives/{drive-id}/items/{item-id}/

回答 1 投票 0

在 SharePoint 上,如何确定用户是否有权访问某些项目

我们在 Sharepoint 驱动器上托管一些文件,并使用它进行文件预览。效果很好,我可以使用此 API 网址查看预览: GET /drives/{drive-id}/items/{item-id}/preview 现在,

回答 1 投票 0

从 Google 表格中的超链接中删除重命名

我有一个 Google 表格,里面有很多链接。我不想看到丑陋的网址,所以我将它们重命名为简单地说“链接”。但是我无法预览这样的链接。我没去过

回答 1 投票 0

antd预览关闭弹出框

我在 antd popover 中使用 antd 图像并打开图像的预览,然后如果我单击预览或关闭预览,这也会导致弹出窗口关闭,我该如何防止这种情况? 我...

回答 1 投票 0

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