为Android手机设计UI
我正在开发一个安卓应用程序。我的客户拥有摩托罗拉 Atrix。我在eclipse中基于屏幕尺寸3.7英寸WVGA(Nexus One)设计了ui。它在几乎所有设备上都能正常工作,例如 HTCdesire、galaxys2...但在摩托罗拉 Atrix(540 x 960 像素)上,它在底部显示一些空白区域。
如何针对该设备指定 UI?
我已经读过 android 开发者 t教程 但没有得到一个想法。
这是当前的布局,
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/ScrollView01"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:background="#FFFFFF" android:layout_height="525dp">
</RelativeLayout>
我怎样才能正确地做到这一点? 谢谢
I am developing an android app. My client has got Motorola Atrix. I designed the ui in eclipse based on screen size 3.7in WVGA (Nexus One). Which works fine in almost all devices like HTC desire, galaxys2... but on Motorola Atrix (540 x 960 pixels) its showing some blank space on bottom.
How can I target an UI for that device?
I have already read in android developer tutorials but didnt get an idea.
Here is the current layout
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/ScrollView01"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:background="#FFFFFF" android:layout_height="525dp">
</RelativeLayout>
how can I do this properly?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我通过在滚动视图属性中添加选项
android:fillViewport="true"
解决了这个问题。谢谢大家。
I solved the issue by adding option
android:fillViewport="true"
in scrollview properties.Thanks all.