2
我的應用程序崩潰時,我把這個代碼中的背景線。當我刪除這一行時,我的應用程序工作正常,而且當我使用另一張照片時,它也可以正常工作有什麼問題?背景圖像崩潰android
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@drawable/table2" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
</LinearLayout>
主屏幕的背景也正常工作。但在第二頁中,這是一個很有說服力的問題。
在你的drawable文件夾中是否有文件table2? – Gridtestmail
把你的日誌貓錯誤 –
你是什麼意思'崩潰',請顯示日誌貓 – wtsang02