declex icon indicating copy to clipboard operation
declex copied to clipboard

DecleX - Declarative Framework for Android, easier and faster coding.

Results 100 declex issues
Sort by recently updated
recently updated
newest added

Add a support for Intents in the actions, including some default behavior for specific intents. It would be nice to have Intents for the camera and gallery images that would...

enhancement
cool to have

When the actions are used to instantiate fragments, it is assumed that the current container in the Activity it is R.id.container... This behavior can be changed specifying which one to...

enhancement
important

In AndroidAnnotation, per each listener an annotation should be crated, in general, the task of creating those annotations it is highly time consuming, but basically, all of them do the...

enhancement
framework
cool to have

To support $Populate("someView"), it would be enough calling populateThis passing the string as a parameter, the method populate this can check this string do determine what methods call, see that...

enhancement
cool to have

Formatted Syntax can be improved using formatted expressions (C-like), for this, the code will be "encapsulated" with its modifier, ex: "The time is: {%02d: hour}:{%02d: minute}" This will help to...

enhancement
cool to have

IntelliJ (so Android Studio) writes all the breakpoints to the file workspace.xml, under this component: ```xml file://$PROJECT_DIR$/app/somefile.java 420 ``` When the file is modified the IDE shows and hide the...

enhancement
cool to have

The current populate and recollect mechanism will support the following notations: `id="@+id\nameSurname"` This should accept to be linked to: Field `nameSurname` Method `var nameSurname()` getter Method `var getNameSurname()` getter Method...

enhancement

It would be useful to create Autogenerated Classes (these are created directly from the code itself). This would permit to program faster States and encapsulate the code easier... Ex. ```java...

enhancement

The enhanced views could make the Populate action by themselves without the need of an intervention of @Populate annotation. Let's say that we have a layout with Ids "@+id/user_firstName", "@+id/user_lastName",...

enhancement

The implemented Cache Service doesn't detect changes in the layout, let's say you have an activity and in the @EActivity it is provided a layout, if this layout changes a...

bug