Problem calling neko.ui.config on a LinearLayout
Closed this issue · 4 comments
Deleted user commented
Came across this as I was going through Kris's tutorial. Here is the code in question:
(declare ^android.widget.LinearLayout mylayout)
(declare add-event)
(defn get-elmt [elmt]
(elmt (.getTag mylayout)))
(defn set-elmt [elmt s]
(on-ui (config (elmt (.getTag mylayout)) :text s)))
(defn add-event []
(set-elmt ::listing "TEST SETTING TEXT"))
(def main-layout [:linear-layout {:orientation :vertical,
:id-holder :true
:def `mylayout}
[:edit-text {:hint "Event name",
:id ::name}]
[:edit-text {:hint "Event location",
:text "Partay Town!"
:id ::location}]
[:button {:text "+ Event"
:on-click (fn [_] (add-event))}]
[:text-view {:text @listing
:id ::listing}]])
Calling add-event in the activity crashes the app, with the error:
java.lang.ClassCastException: android.view.ViewGroup$LayoutParams cannot be cast to android.widget.LinearLayout$LayoutParams
alexander-yakushev commented
Sorry, a regression happened after one of the recent commits. Can you please try again with neko 3.0.0-SNAPSHOT and lein-droid 0.2.0-SNAPSHOT? Thank you!
Deleted user commented
Ah yup, that works now. Thanks!
Deleted user commented
If it's helpful, I was using lein-droid 0.2.0-preview2 and neko 3.0.0-preview3 when that bug was generated.
alexander-yakushev commented
Great! Thank you for reporting it, I would be very said if it made it to release:-) .