为Android手机设计UI

发布于 2024-12-09 08:04:53 字数 846 浏览 0 评论 0原文

我正在开发一个安卓应用程序。我的客户拥有摩托罗拉 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

演多会厌 2024-12-16 08:04:53

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

I solved the issue by adding option android:fillViewport="true" in scrollview properties.
Thanks all.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文