tags:

views:

33

answers:

1

hi , I am getting this exception at start of every screen ,irrespective of giving height. java.lang.RuntimeException: Binary XML file line #25: You must supply a layout_height attribute.

+2  A: 

Every view in your xml file must have a layout_height and layout_width attribute defined. If you look at the xml file on line 25, you should be missing that. I.e:

<LinearLayout layout_height="fill_parent" 
               layout_width="fill_parent"/>
Mayra