我试图将我的应用程序运行到Xoom平板电脑中,结果却变成了与手机完全一样的大小(它不能填满整个屏幕).
因此,我创建了一个非常简单的项目,该项目仅在中间显示了降级图像和进度条.我得到了相同的结果,如下图所示:
Xoom – Tiny screen http://raphaeu.com/gvt/Imagem.jpg
因此,我将如何继续编写布局以填充平板电脑的整个屏幕?
这是我的清单:
<?xml version="1.0" enCoding="utf-8"?>
<application androID:icon="@drawable/icon" androID:label="@string/app_name"> <activity androID:name=".MainActivity" androID:label="@string/app_name"> <intent-filter> <action androID:name="androID.intent.action.MAIN" /> <category androID:name="androID.intent.category.LAUNCHER" /> </intent-filter> </activity></application>
这是我的main.xml布局:
<?xml version="1.0" enCoding="utf-8"?><relativeLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:layout_wIDth="fill_parent" androID:layout_height="fill_parent" androID:background="@drawable/splash_portrait"><Progressbar androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:layout_centerHorizontal="true" androID:layout_centerInParent="true"/></relativeLayout>
这是整个项目,如果您想看一看:
http://raphaeu.com/gvt/xoom.zip
提前非常感谢您!!
解决方法:
将此添加到清单中.
<supports-screens androID:smallScreens="true" androID:normalScreens="true" androID:largeScreens="true" androID:anyDensity="false" />
这是细节…
http://developer.android.com/guide/practices/screens-distribution.html
以上是内存溢出为你收集整理的android-如何使我的手机应用程序在平板电脑(Xoom)中填满整个屏幕?全部内容,希望文章能够帮你解决android-如何使我的手机应用程序在平板电脑(Xoom)中填满整个屏幕?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)