什麼是你好的應用程序,只需用一些其他的文本不能填滿整個屏幕的問題嗎?
的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>
請顯示您的xml .. – vsvydenko
我不認爲這是xml問題...但在我的編輯中看到,我發佈了main.xml – Lukap
fill_parent已被棄用。從API級別8開始,您應該使用match_parent – Merlin