After JavaFX, where elements of the window can be obtained using magic, attaching fields in the controller class (activate Android) with annotation, for example,
@FXML ListView<String> ciList; //название поля должно совпасть с ID компонента In the anroid, you have to look for a view every time like this:
TextView twBurnTime = (TextView) findViewById(R.id.tw_burn_time); Another disadvantage is that in FX there is one ID name in XML and in code, but here they are different, in XML you need to write as_in_html. Have you come up with another annotation that would help developers write less and work more?
E/dalvikvm: Could not find class 'android.widget.ThemedSpinnerAdapter', referenced from method android.support.v7.widget.AppCompatSpinner$DropDownAdapter.<init>- Eugene