Evgenii Legotckoi
March 5, 2018, 2:13 p.m.

Android. Java vs Qt QML - Tutorial 000. Enable Material Design

When you develop both Java and Qt QML, you need to enable Material Design.

Material Design on Java

In the case of Java, it's enough to include the theme design in the styles.xml file and set the required color gamut for the application.

styles.xml

  1. <resources>
  2.  
  3. <style name="AppTheme" parent="android:Theme.Material">
  4. <!-- Main theme colors -->
  5. <!-- your app branding color for the app bar -->
  6. <item name="android:colorPrimary">@color/colorPrimary</item>
  7. <!-- darker variant for the status bar and contextual app bars -->
  8. <item name="android:colorPrimaryDark">@color/colorPrimaryDark</item>
  9. <!-- theme UI controls like checkboxes and text fields -->
  10. <item name="android:colorAccent">@color/colorAccent</item>
  11. </style>
  12.  
  13. </resources>

colors.xml

Colors are specified in this file.

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <resources>
  3. <color name="colorPrimary">#3F51B5</color>
  4. <color name="colorPrimaryDark">#303F9F</color>
  5. <color name="colorAccent">#FF4081</color>
  6. </resources>

Material Design on Qt QML

In order to use Material Design on Qt QML, you must enable the use of Qt Quick Controls 2 in the project profile.

  1. QT += quick quickcontrols2

Next, we connect the QQuickStyle class in main.cpp to use the static method of this class to include the Material Design style for the entire application.

  1. #include <QGuiApplication>
  2. #include <QQuickStyle> // Class to enabling styling
  3. #include <QQmlApplicationEngine>
  4.  
  5. int main(int argc, char *argv[])
  6. {
  7. QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
  8.  
  9. QGuiApplication app(argc, argv);
  10.  
  11. QQuickStyle::setStyle("Material"); // Enable Material Design
  12.  
  13. QQmlApplicationEngine engine;
  14. engine.load(QUrl(QStringLiteral("qrc:/main.qml")));
  15. if (engine.rootObjects().isEmpty())
  16. return -1;
  17.  
  18. return app.exec();
  19. }

Changing the color scheme

To change the color style of the style, use the configuration file qtquickcontrols2.conf , which should be placed in the project root next to the project profile. You can add this file to resources to make it easier to work with this file from the IDE.

  1. [Material]
  2. Primary=#3F51B5
  3. Accent=#FF4081
  4. Theme=#303F9F
  5. Foreground=#ffff00
  6. Background=#00ffff

Color scheme settings

In Java, there are the following color scheme settings

  • colorPrimary - basic color, for example color Action Bar
  • colorPrimaryDark - color of the status bar
  • textColorPrimary - color of text for inscriptions on top of elements with a background colorPrimary
  • windowBackground - application background color
  • navigationBarColor - color of the phone's navigation menu
  • colorAccent - color of elements, such as checkboxes, etc.

Qt QML has only five color settings

  • Primary - basic color, elements similar to Action Bar
  • Accent - color elements such as checkboxes
  • Theme - color theme, applied to both the main application window as a background, and for pop-up menus or other other elements. Can also be overridden by Foreground and Background properties
  • Foreground - a separate color theme setting, can be applied to text, redefines the Theme settings.
  • Background - It is used to define the background of such elements as the menu, Navigation Drawer, etc. redefines the settings of Theme.

For Theme, you can use System as the value, which means using system color palettes. But you can do color correction with Foreground and Background.

Do you like it? Share on social networks!

A
  • July 3, 2020, 3:05 a.m.

Подскажите пожалуйста, эта тема все еще актуальна? Или есть другие способы работать с темой? Вообщем хочу изменить цвет статус бара и бара навигации в приложении, но не знаю как это делать правильно. Можно сделать полный экран, но это кажется совсем не то...

Evgenii Legotckoi
  • July 3, 2020, 11:29 a.m.

Это актуально для изменения цвета. В файле qtquickcontrols2.conf переменная Primary должна влиять на цвет приложения соответственно и цвет ApplicationBar должен поменяться. Но у status bar вроде как нужно запускать код в Java потоке Android приложения.

Вот есть такое решение

  1. QtAndroid::runOnAndroidThread([=]()
  2. {
  3. QAndroidJniObject window = QtAndroid::androidActivity().callObjectMethod("getWindow", "()Landroid/view/Window;");
  4. window.callMethod<void>("addFlags", "(I)V", 0x80000000);
  5. window.callMethod<void>("clearFlags", "(I)V", 0x04000000);
  6. window.callMethod<void>("setStatusBarColor", "(I)V", 0xffffffff); // Desired statusbar color
  7. });

Для изменения цвета текста

  1. QAndroidJniObject decorView = window.callObjectMethod("getDecorView", "()Landroid/view/View;");
  2. decorView.callMethod<void>("setSystemUiVisibility", "(I)V", 0x00002000);

Есть ещё вот такой репозиторий, который должен с этим работать github . Но насколько он актуален, я не знаю.
Но думаю, что лучше подключите проект из github в своём проекте. Он выглядит достаточно адекватным на беглый взгляд.

Comments

Only authorized users can post comments.
Please, Log in or Sign up
  • Last comments
  • AK
    April 1, 2025, 11:41 a.m.
    Добрый день. В данный момент работаю над проектом, где необходимо выводить звук из программы в определенное аудиоустройство (колонки, наушники, виртуальный кабель и т.д). Пишу на Qt5.12.12 поско…
  • Evgenii Legotckoi
    March 9, 2025, 9:02 p.m.
    К сожалению, я этого подсказать не могу, поскольку у меня нет необходимости в обходе блокировок и т.д. Поэтому я и не задавался решением этой проблемы. Ну выглядит так, что вам действитель…
  • VP
    March 9, 2025, 4:14 p.m.
    Здравствуйте! Я устанавливал Qt6 из исходников а также Qt Creator по отдельности. Все компоненты, связанные с разработкой для Android, установлены. Кроме одного... Когда пытаюсь скомпилиров…
  • ИМ
    Nov. 22, 2024, 9:51 p.m.
    Добрый вечер Евгений! Я сделал себе авторизацию аналогичную вашей, все работает, кроме возврата к предидущей странице. Редеректит всегда на главную, хотя в логах сервера вижу запросы на правильн…
  • Evgenii Legotckoi
    Oct. 31, 2024, 11:37 p.m.
    Добрый день. Да, можно. Либо через такие же плагины, либо с постобработкой через python библиотеку Beautiful Soup