summaryrefslogtreecommitdiffstats
path: root/examples/qmlandroid/catalog/qml/main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/qmlandroid/catalog/qml/main.qml')
-rw-r--r--examples/qmlandroid/catalog/qml/main.qml78
1 files changed, 78 insertions, 0 deletions
diff --git a/examples/qmlandroid/catalog/qml/main.qml b/examples/qmlandroid/catalog/qml/main.qml
new file mode 100644
index 0000000..08c1156
--- /dev/null
+++ b/examples/qmlandroid/catalog/qml/main.qml
@@ -0,0 +1,78 @@
+import android 0.21
+import android.app 0.21
+import android.view 0.21
+import android.widget 0.21
+import android.graphics 0.21
+import android.graphics.drawable 0.21
+import android.support.v4.widget 0.21
+import android.support.v7.app 0.21
+
+Activity {
+ id: activity
+
+ window.statusBarColor: Color.name("#455a64")
+
+ actionBar: ActionBar {
+ title: "QML for Android"
+ subtitle: adapter.getItem(switcher.displayedChild)
+ background: ColorDrawable {
+ color: Color.name("#607d8b")
+ }
+ }
+
+ optionsMenu: Menu {
+ MenuItem {
+ title: "Search"
+ showAs: MenuItem.SHOW_AS_ACTION_ALWAYS
+ visible: switcher.displayedChild == 2
+ actionView: SearchView { }
+ }
+ MenuItem {
+ title: "About"
+ onClick: dialog.show()
+ }
+ MenuItem {
+ title: "Exit"
+ onClick: Qt.quit()
+ }
+ }
+
+ AlertDialog {
+ id: dialog
+ title: "About"
+ message: "QML wrappers for native Android controls."
+ }
+
+ contentView: DrawerLayout {
+ id: drawer
+
+ ActionBarDrawerToggle { }
+
+ ViewAnimator {
+ id: switcher
+ inAnimation: R.anim.slide_in_left
+ outAnimation: R.anim.slide_out_right
+
+ ButtonView { }
+ ProgressView { }
+ InputView { }
+ PickerView { }
+ ModelView { }
+ AwesomeView { }
+ }
+
+ ListView {
+ DrawerLayout.gravity: Gravity.LEFT
+ backgroundColor: Color.name("#eee")
+ adapter: ArrayAdapter {
+ id: adapter
+ style: R.layout.simple_selectable_list_item
+ array: ["Buttons", "Progress", "Input", "Pickers", "Views", "100%"]
+ }
+ onClick: {
+ drawer.closeDrawer(Gravity.LEFT)
+ switcher.displayedChild = position
+ }
+ }
+ }
+}