Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/221.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/html/74.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
如何让Android HTC Desire应用程序适合三星Galaxy pad的屏幕?_Android - Fatal编程技术网

如何让Android HTC Desire应用程序适合三星Galaxy pad的屏幕?

如何让Android HTC Desire应用程序适合三星Galaxy pad的屏幕?,android,Android,让应用程序在HTC Desire上显示良好, 但在三星Galaxy pad上,它并没有填满屏幕空间 如何让我的Android HTC Desire应用程序填满三星Galaxy pad的屏幕? 详细信息: 开始活动的布局文件: 这就解决了它: <supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:anyDensity="tru

让应用程序在HTC Desire上显示良好,
但在三星Galaxy pad上,它并没有填满屏幕空间

如何让我的Android HTC Desire应用程序填满三星Galaxy pad的屏幕?

详细信息:
开始活动的布局文件:

这就解决了它:

<supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:anyDensity="true" />

我现在已经尝试了w.o.的任何成功。这解决了它:我解释文档的方式我不应该指定这一点。它应该是默认值!?你应该回答你自己的问题——把你的评论变成一个答案并接受它
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="my.package" android:versionCode="1" android:versionName="1.0">
        <uses-permission android:name="android.permission.INTERNET" />
        <application android:name="my.package.AppContext" android:theme="@android:style/Theme.Light" android:icon="@drawable/icon" android:label="@string/app_name" android:debuggable="true">
# Indicates whether an apk should be generated for each density.
split.density=false
# Project target.
target=Google Inc.:Google APIs:8
<supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:anyDensity="true" />