Binary XML file line #15: Error inflating class button


<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  android:background="#ffffff"
  android:gravity="center">
 
  <LinearLayout
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:background="#00ff00"
      android:layout_gravity="center"
      android:orientation="horizontal">
     
      <button
          android:id="@+id/button1"
          android:layout_width="100dip"
          android:layout_height="100dip"
          android:background="#ff0000"
          android:layout_margin="10dip"
      />
      <button
          android:id="@+id/button2"
          android:layout_width="100dip"
          android:layout_height="100dip"
          android:background="#ff0000"
          android:layout_margin="10dip"
      />
     
  </LinearLayout> 
 
</LinearLayout>