Android“你好世界” Galaxy Tab 屏幕上的布局问题

发布于 2024-10-09 19:26:02 字数 991 浏览 2 评论 0原文

大家好:)
我正在尝试运行一个带有按钮和文本视图的简单“Hello World”程序。 这是布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:id="@+id/layout"
              xmlns:android="http://schemas.android.com/apk/res/android"
              android:layout_width="match_parent"
              android:layout_height="match_parent"
              android:orientation="vertical" >
    <TextView android:id="@+id/text"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:text="text"
              android:layout_gravity="center_horizontal" />
    <Button android:id="@+id/button"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="button"
            android:layout_gravity="center_horizontal" />
</LinearLayout>

问题是它在三星 Galaxy Tab 分辨率的模拟器上看起来不太好。该视图并没有像我希望的那样占用所有可用空间,而只占用了一部分。 “match_parent”布局的宽度和高度是否正确?

Hi guys :)
I'm trying to run a simple "Hello World" program with a button and a textview.
This is the layout:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:id="@+id/layout"
              xmlns:android="http://schemas.android.com/apk/res/android"
              android:layout_width="match_parent"
              android:layout_height="match_parent"
              android:orientation="vertical" >
    <TextView android:id="@+id/text"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:text="text"
              android:layout_gravity="center_horizontal" />
    <Button android:id="@+id/button"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="button"
            android:layout_gravity="center_horizontal" />
</LinearLayout>

The problem is that it doesn't look good on the simulator with Samsung Galaxy Tab's resolution. The view doesn't take all available space as I wish but only a portion. Is "match_parent" correct in layout's width and height?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

茶底世界 2024-10-16 19:26:02

解决方案:在manifest.xml中添加

SOLUTION: add <uses-sdk android:minSdkVersion="4" /> in the manifest.xml

吃颗糖壮壮胆 2024-10-16 19:26:02
      xmlns:android="http://schemas.android.com/apk/res/android"
      android:layout_width="fill_parent"
      android:layout_height="fill_parent"
      android:orientation="vertical" >

试试这个...它可能会起作用。

      xmlns:android="http://schemas.android.com/apk/res/android"
      android:layout_width="fill_parent"
      android:layout_height="fill_parent"
      android:orientation="vertical" >

try this... it may work.

掐死时间 2024-10-16 19:26:02

我认为应该有 fill_parent

I think there should be fill_parent

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