gpt4 book ai didi

android - Android中的布局问题

转载 作者:行者123 更新时间:2023-11-29 16:25:13 25 4
gpt4 key购买 nike

我是 android 的新手,在布局方面遇到了一些问题。下面是我希望布局看起来像的近似值。 (我希望列表首先位于屏幕下方,以便用户可以向下滚动以查看它。)但是我目前的代码使得左侧的所有 View 只占据屏幕的四分之一而不是一半,如图所示,即使我将所有宽度都设置为 fill_parent。

此外,这种布局似乎弄乱了我的自定义 View 上的坐标系。通常这不是什么大问题,但在这种情况下,我正在使用该 View 绘制图片,而图片最终出现在错误的位置。有人知道如何解决这些问题吗? alt text

这是我的代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:orientation="vertical">
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:orientation="vertical">
<TableRow>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="fill_parent" android:orientation="vertical"
android:layout_width="fill_parent">
<TableRow>
<TextView android:text="Resultant Force" android:id="@+id/resForceTitle"
android:textSize="25dip" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:padding="3dip"
android:gravity="center" android:layout_span="2" />
</TableRow>
<TableRow>
<TextView android:id="@+id/magText" android:text="Magnitude (N) ="
android:textSize="15dip" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:padding="3dip"
android:gravity="center_vertical" android:layout_span="2" />
</TableRow>
<TableRow>
<EditText android:id="@+id/magnitude" android:inputType="numberDecimal"
android:layout_width="fill_parent" android:padding="3dip"
android:layout_height="fill_parent" android:layout_span="2" />
</TableRow>
<TableRow>
<TextView android:id="@+id/dirText" android:text="Angle (deg) ="
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:textSize="15dip" android:gravity="center_vertical"
android:layout_span="2" />
</TableRow>
<TableRow>
<EditText android:id="@+id/direction" android:inputType="numberDecimal"
android:layout_height="fill_parent" android:padding="3dip"
android:layout_width="fill_parent" android:layout_span="2" />
</TableRow>
<TableRow>
<Button android:id="@+id/pushButton" android:text="Add Force"
android:layout_height="fill_parent" android:padding="3dip"
android:layout_width="fill_parent" />
<Button android:id="@+id/clearButton" android:text="Clear"
android:layout_height="fill_parent" android:padding="3dip"
android:layout_width="fill_parent" />
</TableRow>
</TableLayout>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent">
<android.physicsengine.AxisDrawing
android:id="@+id/image" android:layout_width="fill_parent"
android:layout_height="fill_parent" />
</FrameLayout>
</TableRow>
</TableLayout>
<ListView android:id="@android:id/list" android:layout_height="wrap_content"
android:padding="3dip" android:layout_width="fill_parent"
android:clickable="false" />
<TextView android:id="@android:id/empty" android:text="Add Forces to List Components"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:textSize="15dip" android:gravity="center_vertical" />
</LinearLayout>

最佳答案

从您的 XML 外观来看,您似乎误解了 fill_parent 的含义。意思是“和我 parent 一样大”。另外,为什么要使用两个嵌套的 TableLayouts?要将屏幕平均分成两部分,您应该使用水平的 LinearLayout 并为每个子项(TableLayout 和您的自定义 View )提供 0dip 的宽度和 1 的 layout_weight:

<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TableLayout
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_height="wrap_content">
...
</TableLayout>
<android.physicsengine.AxisDrawing
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>

关于android - Android中的布局问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4771949/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com