summaryrefslogtreecommitdiff
path: root/src/clojure
diff options
context:
space:
mode:
authorDavid Barksdale <amatus@amatus.name>2013-08-26 20:31:42 -0500
committerDavid Barksdale <amatus@amatus.name>2013-08-26 20:31:42 -0500
commit85e0a42e2a695b4eb58579aeba0756ff64615f03 (patch)
tree6840eae199e3eac8a7c7a2fb9217273b9bfefc53 /src/clojure
New lein-droid project.
Created by: lein droid new carddav-sync io.cons.carddav_sync \ :target-sdk 18 :app-name CardDAV-Sync
Diffstat (limited to 'src/clojure')
-rw-r--r--src/clojure/io/cons/carddav_sync/main.clj14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/clojure/io/cons/carddav_sync/main.clj b/src/clojure/io/cons/carddav_sync/main.clj
new file mode 100644
index 0000000..c5f4048
--- /dev/null
+++ b/src/clojure/io/cons/carddav_sync/main.clj
@@ -0,0 +1,14 @@
+(ns io.cons.carddav_sync.main
+ (:use [neko.activity :only [defactivity set-content-view!]]
+ [neko.threading :only [on-ui]]
+ [neko.ui :only [make-ui]]
+ [neko.application :only [defapplication]]))
+
+(defactivity io.cons.carddav_sync.MainActivity
+ :def a
+ :on-create
+ (fn [this bundle]
+ (on-ui
+ (set-content-view! a
+ (make-ui [:linear-layout {}
+ [:text-view {:text "Hello from Clojure!"}]])))))