Hello应用程序有什么问题,只是其他一些文本没有填满整个屏幕?
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 :(得分:2)
将此添加到AndroidManifest文件。
<supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:anyDensity="true" />
答案 1 :(得分:0)
有时Android会难以选择要使用的特定图形。 我有同样的问题,我通过使用特殊的drawable目录解决了它 - 抽拉-HDPI-1200x650。