- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果我使用滑动 View ,我会遇到一些问题,并且我编写了以下代码:
import QtQuick 2.6
import QtQuick.Window 2.2
import QtQuick.Controls 2.2
Window {
visible: true
width: 640
height: 480
title: qsTr("Swipe View")
MainForm {
anchors.fill:parent
Rectangle{
id:rightRect
anchors.right:parent.right
width: parent.width*0.50
height:parent.height
color:"yellow"
}
Rectangle{
id:leftRect
width:parent.width*0.50
height:parent.height
color:"lightgreen"
border.color:"red"
anchors.right:rightRect.left
SwipeView{
id:swipeView
anchors.fill : leftRect
//Layout.fillWidth: true
currentIndex: 0
interactive: false
Page{
id:page1
Rectangle{
width:parent.width
height:parent.height
color:"lightgreen"
Button{
text:"move to 2"
onClicked: swipeView.currentIndex = 1
}
}
}
Page{
id:page2
Rectangle{
width:parent.width
height:parent.height
color:"lightblue"
Button{
text:"move to 1"
onClicked: swipeView.currentIndex = 0
}
}
}
}
}
}
}
最佳答案
添加 clip:true
到您的 SwipeView 的父级,它会很好。
Rectangle{
id:leftRect
width:parent.width*0.50
height:parent.height
color:"lightgreen"
border.color:"red"
anchors.right:rightRect.left
clip:true //add this
SwipeView{
If clipping is enabled, an item will clip its own painting, as well as the painting of its children, to its bounding rectangle.
SwipeView
走出矩形区域。
关于qt - QML SwipeView 覆盖整个窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45319828/
我正在使用这个:https://github.com/nicklockwood/SwipeView 我在我的应用程序的 2 个不同位置使用它。 屏幕上的 30x30 图片大约 100kb 文件大小,这
如果我使用滑动 View ,我会遇到一些问题,并且我编写了以下代码: import QtQuick 2.6 import QtQuick.Window 2.2 import QtQuick.Contr
我正在尝试创建基于 SwipeView 元素的视差 View 。 QML 文档中的示例说明了如何使用 ListView 实现它: Image { id: background sour
我通过 viewpager 有一个带有两个不同 View ( fragment )的 swipeview。我现在想要这两个页面显示来自 sqllite 数据库的不同数据。问题是我无法弄清楚如何做到这一
我将尝试以非常清晰易懂的方式解释我的问题。 我目前在这里使用 SwipeView:http://jasonfry.co.uk/?id=23
我正在使用 jason fry 的 SwipeView,虽然他将它用于 ImageView ,但我正在努力用布局替换它。 目前,如果我用 TextView 替换 ImageView 就可以了,但是我如
我正在使用 Swipeview ( http://cubiq.org/swipeview ) 创建可在 iPhone 和 Android 上运行的触控式 carousel。基础知识非常有用。 当我尝试
我必须在 SwipeView 中使用 QML 组件(例如项目 1、项目 2、项目 3)而不使用 Repeater 来实现页面,并且还需要实现翻页器,如下所示。 getPreviousPage Rect
我正在尝试制作一个带有按钮的滑动 View ,只要单击该按钮,它就会打开第二个 Activity ,但我无法在点击监听器中设置 setActivity 这是我的代码。将进行哪些更改我在我的寻呼机适配器
我的新项目由一个带有 6 个 fragment 的抽屉导航组成(奥迪/宝马/起亚...汽车品牌)。我希望每个 fragment 都有 2 个其他 fragment ( Models ,其中将有一个带有
我是 android 的新手。我正在做简单的 aphabate 应用程序。在那个应用程序中我正在使用字母表字母。当在字母上滑动时它将如何移动到下一个字母。请给我建议 提前致谢 最佳答案 我想建议您查看
我正在使用 iScroll4 在移动网站中的图像上创建水平滚动效果。 iScroll 工作得很好,但问题是 iScroll 包装器中包含的图像禁用了 native 垂直滚动。换句话说,在 iScrol
可能这是一个骗局,但我一直在寻找解决方案,它们总是与我的问题略有不同。 所以:我目前正在创建一个应用程序,其中包含 2 个可滑动的 fragment 。 TaskGroupFragment 显示一个列
我正在努力避免 SideView 和 ListView 似乎都喜欢的这种烦人的重叠。这是一个演示问题的示例: 注意:当您滑动 SwipeView 时请查看左侧的绿色矩形,当您向下滚动 ListView
我使用 swipeview 在两个页面之间滑动,每个页面本身就是一个 Activity (一个 xml 和一个 java 文件)。如果没有 swipeview,我的应用程序可以正常工作,并且我的数据库
我是一名优秀的程序员,十分优秀!