2011-07-28 131 views
0

enter image description here平板電腦的應用程序不填滿屏幕完全

什麼是你好的應用程序,只需用一些其他的文本不能填滿整個屏幕的問題嗎?

的TextView控件的屬性都是FILL_PARENT ...

如何使用平板電腦的整個屏幕爲我的應用>?

main.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" 
    > 
<TextView 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:text="just small area" 
    /> 
</LinearLayout> 
+0

請顯示您的xml .. – vsvydenko

+0

我不認爲這是xml問題...但在我的編輯中看到,我發佈了main.xml – Lukap

+0

fill_parent已被棄用。從API級別8開始,您應該使用match_parent – Merlin

回答

2

一下添加到AndroidManifest文件。

 
&ltsupports-screens 
      android:smallScreens="true" 
      android:normalScreens="true" 
      android:largeScreens="true" 
      android:anyDensity="true" /> 
+1

如果您使用的是Android 2.2+,即在AndroidManifest文件中指定目標SDK版本爲8或更高版本,則不需要包含支持屏幕,則框架將小心處理。 – sat

+0

平板上,你通常希望targetSDK到11甚至沒有設置要麼在看問題中的圖片 – MrJre

+0

他可能會使用在平板電腦上開發1.6 +以上的代碼。 – sat

0

有時候Android很難選擇特定的圖形來使用。 我有同樣的問題,我解決了它通過使用特殊的繪圖目錄 - drawable-hdpi-1200x650。

相關問題