0
我想在Android上編寫Clojure。使用lein-droid。Clojure訪問Android庫中的枚舉
我想訪問Android庫中的枚舉屬性。
特別是,我試圖將此行轉換爲Clojure。
mPaint.setStyle(Paint.Style.STROKE);
我第一次嘗試是
(.setStyle paint Paint/Style/STROKE)
這使我的錯誤:
java.lang.RuntimeException: Unable to find static field: Style.STROKE in class android.graphics.Paint
我如何獲得這個枚舉值?基於