Source

Target

Commits (4)
Showing with 18 additions and 12 deletions
......@@ -97,13 +97,13 @@ summarizes the available installers.
\li MSVC 2012 SP2
\row
\li Android Linux 32-bit host installer
\li x86, ARMv5, ARMv7 Android targets
\li x86 and ARMv7
\row
\li Android Linux 64-bit host installer
\li x86, ARMv5, ARMv7 Android targets
\li x86 and ARMv7
\row
\li Android Windows 32-bit host installer
\li x86, armv5, armv7 Android targets
\li x86 and ARMv7
\endtable
\section1 Starting Development Tools
......
......@@ -69,9 +69,10 @@ After the SDK is updated, install the Qt 5.1 binaries using the
to develop for Android. For more information, see
\l{Qt Creator: Connecting Android Devices}.
\note You must manually choose at least one of the two Qt libraries for Android
(x86 and ARMv7) from the \gui{Qt 5.1.0} component tree within the \gui{Select
Components} page of \l{Qt Installation Program}{Qt installation program}.
\note You must select at least one of the two Qt libraries for Android
(x86 and ARMv7) from the \gui{Qt 5.1.0} component tree in the
\gui{Select Components} page of \l{Qt Installation Program}
{Qt installation program}. By default, Qt libraries for ARMv7 are selected.
\section1 Porting an Existing Qt Application
......
......@@ -146,7 +146,7 @@
\section1 Supported Architectures
Qt for Android currently has binaries for ARMv5, ARMv7, and x86. Make sure you select the
Qt for Android currently has binaries for ARMv7 and x86. Make sure you select the
correct architecture for the device or emulator you are targeting, otherwise your application
will crash. The MIPS archictecture is currently not supported by Qt.
......
......@@ -26,7 +26,7 @@
****************************************************************************/
/*!
\page qtquick-usecase-layouts.html
\title Use Case - Layouts In QML
\title Use Case - Positioners and Layouts In QML
\brief Example of how to create layouts for visual components in a QML application
There are several ways to position items in QML.
......@@ -63,17 +63,19 @@ For full details, see \l {Positioning with Anchors} and the documentation of the
\image qmlapp/qml-uses-layouts-anchors.png
\section1 Positioners
\section1 Positioners and Layouts
For the common case of wanting to position a set of types in a regular pattern, Qt Quick provides some positioner
For the common case of wanting to \e position a set of types in a regular pattern, Qt Quick provides some positioner
types. Items placed in a positioner are automatically positioned in some way; for example, a \l Row positions items to be
horizontally adjacent (forming a row).
For full details see \l {Item Layouts} and the documentation for \l{qtquick-qmltypereference.html#positioning}{the positioner types}.
For full details see \l {Item Positioners} and the documentation for \l{qtquick-qmltypereference.html#positioning}{the positioner types}.
\snippet qmlapp/usecases/layouts.qml import
\snippet qmlapp/usecases/layouts.qml positioners
\image qmlapp/qml-uses-layouts-positioners.png
If \e{positioning and resizing} is desired, you can use the layouts in \l{Qt Quick Layouts}.
*/
......@@ -50,6 +50,9 @@
\li \l{Qt Quick Layouts} - provides layouts for \l{Qt Quick}
\li \l{Qt Quick Dialogs} - contains types for creating and
interacting with system dialogs
\li \l{Qt X11 Extras} - adds platform specific APIs for X11
\li \l{Qt Sensors} - provides access to sensor hardware and motion gesture
......@@ -145,7 +148,7 @@
\list
\li New threaded render loop for Mac, Linux, and Embedded.
\li New render loop for windows for smoother animations.
\li New \l QtQuick.Dialogs module with \l FileDialog and
\li New \l {Qt Quick Dialogs} submodule with \l FileDialog and
\l ColorDialog types.
\li New \l Window properties: activeFocusItem, minimumWidth,
minimumHeight, maximumWidth, maximumHeight, visibility,
......