急求,看看这个布局哪里错了
这个布局文件名first
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="horizontal"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent">
  <ImageButton 
   android:id="@+id/btnshuku"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:src="@drawable/shuku"  
  />
  <ImageButton
   android:id="@+id/btnOpenFileDialog"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:src="@drawable/chazhao"
  ></ImageButton>
  <ImageButton 
   android:id="@+id/btnshuqian"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:src="@drawable/shuqian"  
  />
  <LinearLayout
   android:orientation="vertical"
   android:layout_width="fill_parent"
   android:layout_height="fill_parent"
  >
   <TextView
   android:id="@+id/txtshuqian1"
   android:layout_width="fill_parent"
   android:layout_height="wrap_content"
   android:textSize="23px"
   /> 
  </LinearLayout>
</LinearLayout>
一运行就报异常在setContentView(R.layout.first);这行