FabianTerhorst / FastLayout

Generates a Java Object for your xml layout to reduce inflate time to zero
Apache License 2.0
443 stars 35 forks source link

Remove @Layouts(layouts = {"activity_main", "fragment_one"}) in favor of @Layouts(ids = {R.layout.activity_main, R.layout.fragment_one}) #13

Closed FabianTerhorst closed 8 years ago

FabianTerhorst commented 8 years ago

I will deprecate @Layouts(layouts = {"activity_main", "fragment_one"}), because i used that before i started parsing the R.java file. R.layout is more safe against typos and i could simplify it to @Layouts({R.layout.activity_main, R.layout.fragment_one}).