为Android手机设计UI

时间:2011-10-12 13:27:38

标签: android user-interface screen-resolution

我正在开发一个Android应用程序。我的客户有摩托罗拉Atrix。我根据WVGA(Nexus One)的屏幕尺寸3.7设计了日食。它几乎适用于所有设备,如HTC欲望,galaxys2 ......但在摩托罗拉Atrix(540 x 960像素)上显示底部有一些空白。

如何定位该设备的用户界面?

我已经在android开发人员t utorials中读过,但没有想到。

这是当前的布局

<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>

我该怎么做呢? 感谢

1 个答案:

答案 0 :(得分:3)

我通过在scrollview属性中添加选项android:fillViewport="true"解决了这个问题。 谢谢大家。