QML TableView on Android device
Unsolved
QML and Qt Quick
-
wrote on 11 Apr 2017, 19:40 last edited by
Hi,
I notice that the horizontal scrolling of TableView doesn't work on my Android device. Have you this issues too ?
Bye
Charlie
-
wrote on 12 Apr 2017, 07:12 last edited by CharlieG 4 Dec 2017, 07:13
Hello @Yashpal,
I have this problem with this code :
import QtQuick 2.7 import QtQuick.Controls 1.4 import QtQuick.Layouts 1.1 import QtQuick.Window 2.2 ApplicationWindow { visible: true width: Screen.width < 1280 ? Screen.width : 1280 height: Screen.height < 800 ? Screen.heght : 800 TableView { anchors.fill: parent TableViewColumn { title: "Col1" } TableViewColumn { title: "Col2" } TableViewColumn { title: "Col3" } TableViewColumn { title: "Col4" } TableViewColumn { title: "Col5" } TableViewColumn { title: "Col16" } TableViewColumn { title: "Col7" } TableViewColumn { title: "Col8" } TableViewColumn { title: "Col9" } TableViewColumn { title: "Col10" } } }
-
Hello @Yashpal,
I have this problem with this code :
import QtQuick 2.7 import QtQuick.Controls 1.4 import QtQuick.Layouts 1.1 import QtQuick.Window 2.2 ApplicationWindow { visible: true width: Screen.width < 1280 ? Screen.width : 1280 height: Screen.height < 800 ? Screen.heght : 800 TableView { anchors.fill: parent TableViewColumn { title: "Col1" } TableViewColumn { title: "Col2" } TableViewColumn { title: "Col3" } TableViewColumn { title: "Col4" } TableViewColumn { title: "Col5" } TableViewColumn { title: "Col16" } TableViewColumn { title: "Col7" } TableViewColumn { title: "Col8" } TableViewColumn { title: "Col9" } TableViewColumn { title: "Col10" } } }
-
wrote on 12 Apr 2017, 08:39 last edited by
@Yashpal
Unfortunatly I don't know. I only have 5.8 and 5.9.I post in bug report : https://bugreports.qt.io/browse/QTBUG-60125
1/7