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

ImageView setSrc/ CardView CTOR exception #21

Open zetbrush opened 8 years ago

zetbrush commented 8 years ago
  <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:src="@drawable/std_drawable"/> 
generates  ImageView9000000000000000003.setSrc() method which doesn't exist in ImageView class

for v7 CardView generates constructor  
super(context, attrs, R.style.Widget_Material_CardView, defStyleRes); which doesn't exist as well.
FabianTerhorst commented 8 years ago

the android:src attribute isn´t supported right now.

FabianTerhorst commented 8 years ago

for the second error i need the layout xml.

wanGiB commented 7 years ago

This is a very important and super nice library. Nice job Fabian. Do you have any plans to update this library to include support for most missing attributes? Thanks.