2012-02-18 60 views
3

我下面的代碼添加到main.xml到圖像設置爲我的應用程序的背景圖像:Android背景圖像未在設備中顯示?

android:background="@drawable/bg" 

所以main.xml看起來是這樣的:

<?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:orientation="vertical" 
android:gravity="bottom|fill_vertical" 
android:background="@drawable/bg0" 
> 
<EditText 
    android:id="@+id/edWord" 
    android:layout_width="fill_parent" 
    android:layout_height="53px" 
    android:textSize="20px" 
    android:singleLine="true" 
    android:hint="" 
/> 
<LinearLayout xmlns:android= 
    "http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:scrollbars="vertical" 
    android:layout_weight="1" 
    > 
    <ListView android:id="@+id/lstWord" 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
    /> 

</LinearLayout> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:gravity="center" 
    android:orientation="horizontal" 
> 
    <ImageButton 
     android:id="@+id/btnGetText" 
     android:layout_width="wrap_content" 
     android:layout_height="fill_parent" 
     android:src="@drawable/get" 
     android:layout_weight="0.25" 
    /> 
    <ImageButton 
     android:id="@+id/btnFind" 
     android:text="Click me..." 
     android:layout_width="wrap_content" 
     android:layout_height="fill_parent" 
     android:src="@drawable/find" 
     android:layout_weight="0.25" 
    /> 

</LinearLayout> 
</LinearLayout> 

,當然還有像bg.pngdrawable

問題是僅在模擬器中顯示背景圖像,而不是在我的實際設備(HTC Desire)中顯示。

我做錯了什麼?我需要做些什麼來解決這個問題?

你們能幫忙嗎?非常感謝你。

+0

您可以發佈完整的xml文件嗎? – 2012-02-18 05:03:52

+0

非常感謝,特別是@NagarjunaReddy。最後,我自己修復了這個問題:'ListView android:id =「@ + id/lstWord」 android:layout_width =「fill_parent」 android:layout_height =「fill_parent」 android:background =「@ drawable/bg0「 /> ...' – 2012-02-18 06:33:46

回答

1

我發現這個問題。只需從主線性佈局重力中刪除fill_parent即可。無需像現在那樣在Listview中設置背景。只是改變,因爲我建議它解決你的問題。

android:gravity="bottom|fill_vertical" 
1

試試這個代替那個

<LinearLayout 
    xmlns:android= "http://schemas.android.com/apk/res/android" 
    android:id="@+id/linearlayout" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:orientation="vertical" > 
    <ImageView 
     android:id="@+id/image" 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent"    
     android:background="@drawable/bg" /> 
</Linearlayout> 
+0

非常感謝,但它刪除了以前在'main.xml'中設置的所有其他圖像。我在我的帖子中編輯了我的代碼以反映整個場景。你還能幫忙嗎? – 2012-02-18 05:28:31

+0

@edit您的總xml文件?充分利用正確的答案。 – NagarjunaReddy 2012-02-18 05:30:53

0

我得到了一個類似的錯誤,我的背景可繪製顯示在eclipse的圖形編輯器中,但沒有顯示在我用於調試的設備上。

- >對我來說,它有助於清潔圖像(我剛剛在油漆中打開並保存),然後我用新的圖像覆蓋舊圖像並將其複製到可繪製文件夾中。

0

一些lolipop設備不會顯示更高分辨率的圖像。如果您隨機生成背景或使用一組圖像將它們加載到背景中,您也可以以編程方式手動調整位圖的大小