0

我想更改按钮的字体大小。我使用了这里的解决方案

import QtQuick 2.2
import QtQuick.Controls 1.2
import QtQuick.Controls.Styles 1.2

Rectangle {
  id: container
  width: 800
  height: 800

  Button {
    id: cmdQuit
    text: qsTr("Quit")
    width: 100
    height: 100
    style: ButtonStyle {
      label: Text {
        renderType: Text.NativeRendering
        verticalAlignment: Text.AlignVCenter
        horizontalAlignment: Text.AlignHCenter
        font.pointSize: 20
        text: cmdQuit.text
      }
    }
  }
}

不幸的是,当我这样做时,我失去了 Android 原生外观并获得了备用基础外观。有什么方法可以改变字体大小而不丢失Android上的原生样式?

我想更改单个按钮的外观并希望其他按钮保持不变。我将 Qt5 (C++) 与 QML 一起使用。我不想要一个涉及复制整个 QtQuick/Controls/Styles/Android 文件夹的解决方案 - 我可以自己完成,但这很糟糕

4

3 回答 3

6

警告:此解决方案依赖于修改内部对象,不能保证跨不同的 Qt 版本或平台工作

如果您绝对只想修改未公开对象的属性,您仍然可以使用(或/ )的children属性访问它。Itemresourcesdata

一个方便调用的函数Component.omCompleted是转储 a 的层次结构的函数Item,这里是一个示例实现:

function dumpHierarchy(item, level) {
    level = level | 0;
    for (var index = 0; index < item.children.length; ++index) {
        var child = item.children[index];
        print(Array(level*2 + 1).join(" ")+ index +": "+child);
        dumpHierarchy(child, level+1);
    }
}

以及它在 Android 和 Qt 5.5 上为 a 输出的内容Button

0: QQuickLoader(0xab87c768)
  0: QQuickLoader_QML_44(0xab7a84f0)
  1: QQuickItem_QML_53(0xab8c8d60)
    0: DrawableLoader_QMLTYPE_51(0xab8bb088)
      0: StateDrawable_QMLTYPE_65(0xab949420)
        0: DrawableLoader_QMLTYPE_51(0xab936ea0)
          0: NinePatchDrawable_QMLTYPE_67(0xab955c90)
            0: QQuickAndroid9Patch_QML_68(0xab913608)
        1: QQuickLoader_QML_66(0xab924838)
    1: QQuickRowLayout(0xab8b03a0)
      0: QQuickImage(0xab8b0960)
      1: LabelStyle_QMLTYPE_50(0xab8c1758)
1: QQuickMouseArea_QML_46(0xab887028)

在这里,我们可以看到LabelStyle我们感兴趣的层级位置。如果你想快速而肮脏地做到这一点,你可以在你的Button元素中添加它:

Component.onCompleted: children[0].children[1].children[1].children[1].font.pixelSize = 50

但这并不是真正可维护的,更可接受的解决方案是遍历我们的子层次结构Button并找到要修改的字体。

findFont在一个工作示例 Application 中放置了一个函数:

import QtQuick 2.5
import QtQuick.Controls 1.4

ApplicationWindow {
    id: app
    visible: true
    width: 640
    height: 480

    function findFont(object) {
        if (object.font)
            return object.font;
        var font = null;
        for (var index = 0; index < object.children.length && !font; ++index)
            font = findFont(object.children[index]);
        return font;
    }

    Column {
        anchors.centerIn: parent

        Button {
            anchors.horizontalCenter: parent.horizontalCenter
            text: "Button 1"
            width: 300
            height: 100
        }
        Button {
            anchors.horizontalCenter: parent.horizontalCenter
            text: "Button 2"
            width: 300
            height: 100

            Component.onCompleted: {
                findFont(this).pixelSize = 50;
                // On Android and Qt 5.5, this is equivalent :
                //children[0].children[1].children[1].children[1].font.pixelSize = 50;
            }
        }
    }
}
于 2015-09-15T09:21:22.240 回答
0

您是否尝试过使用Usefont.pixelSize

或尝试以下

QFont f( "Arial", 10, QFont::Bold);
textLabel->setFont( f);
于 2015-09-11T11:08:03.017 回答
0

您可以尝试Button.setTextSize() ButtonTextView继承。如果您在设计时这样做,您可以使用该textSize属性。如果您在设计时执行此操作,则可以按如下方式应用 textSize:

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="New Button"
    android:id="@+id/button"
    android:layout_gravity="center"
    android:textSize="25sp"
    />

当您从 java 代码中执行此操作时,您可以执行以下操作:

// Set textsize to 20px here
button.setTextSize(TypedValue.COMPLEX_UNIT_PX, 20); 
于 2015-09-11T13:39:43.893 回答