2010-07-15 48 views
0

我在使應用程序在android 1.5上運行時遇到問題。它工作正常在1.6,2.1和2.2,但每當我試圖在1.5上運行它,我親近與logcat的輸出立即力:Android 1.5特定錯誤

java.lang.RuntimeException: Unable to start activity 
ComponentInfo{com.qrohlf.activites/com.qrohlf.activites.BookmarkHistoryTabActivity}: 
android.view.InflateException: Binary XML file line #2: Error inflating class 
java.lang.reflect.Constructor 

這令我非常奇怪,因爲線#2我的佈局XML只是

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 

任何想法?在缺少佈局XML的方式中,1.5和1.6之間是否有一些主要的API更改? (以下附上我的佈局XML的參考其餘部分)

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:orientation="vertical" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent"> 
    <include android:id="@+id/custom_titlebar" layout="@layout/custom_titlebar" /> 
    <ViewFlipper android:id="@+id/frame_content" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:layout_weight="1" > 
     <ListView android:id="@+id/soccerteams_listview" 
      android:layout_width="fill_parent" 
      android:layout_height="fill_parent" 
      android:background="#FFFFFFFF"/> 
     <ListView android:id="@+id/countries_listview" 
      android:layout_width="fill_parent" 
      android:layout_height="fill_parent" 
      android:background="#FFFFFFFF"/> 
    </ViewFlipper> 
    <LinearLayout 
     android:orientation="horizontal" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:gravity="center_horizontal" 
     android:background="@android:color/black" 
     android:padding="0px"> 
     <Button android:id="@+id/bookmarks_button" 
      android:layout_width="fill_parent" 
      android:layout_height="wrap_content" 
      android:text="@string/bookmarks" 
      android:textColor="@android:color/primary_text_dark" 
      android:drawableTop="@drawable/ic_bookmark_tab" 
      android:background="@drawable/tab_background" 
      android:layout_weight="1"/> 
     <Button android:id="@+id/history_button" 
      android:layout_width="fill_parent" 
      android:layout_height="wrap_content" 
      android:text="@string/history" 
      android:textColor="@android:color/primary_text_dark" 
      android:drawableTop="@drawable/ic_history_tab" 
      android:background="@drawable/tab_background" 
      android:layout_weight="1"/> 
    </LinearLayout> 
</LinearLayout> 
+0

我認爲這個問題必須在include ,然後發佈佈局=),但正如Romain所說的發佈堆棧跟蹤:) – Jorgesys 2010-07-15 23:28:14

+0

請發佈完整的堆棧跟蹤。 – 2010-07-15 22:45:05

回答

2

請確保您有需要的人可繪製在「繪製」目錄。 1.5不懂「drawable-hdpi」目錄等,只知道「drawable」。

+0

謝謝 - 經過一番努力後我自己想出來了,但那是問題所在。 – QRohlf 2010-07-16 01:03:56