0

我已经对该问题进行了一些研究,找到了一些主题,但没有任何帮助。

这就是我所拥有的:

<RelativeLayout 
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@android:color/white">

    <GridView
      android:id="@+id/grid"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:numColumns="2"
      android:padding="5dp"/>

    <EditText
      android:id="@+id/edit"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:padding="5dp"/>

</RelativeLayout>

我遇到的问题是,当我的网格中有太多元素时,edittext 会被推离屏幕。我尝试在 editText 上使用 alignParentBottom 但这不是我想要的。

我想知道是否有任何方法可以使编辑文本始终可见,即使网格视图中有很多元素,并且将编辑文本保持在网格下方并且不与父级底部对齐。我也尝试使用滚动视图而不是相对布局......但这也是错误的,因为在滚动视图中使用网格视图存在太多错误。

我希望我很清楚,不要犹豫,询问更多信息。

谢谢

4

2 回答 2

1

您也可以通过简单的方式实现这一点LinearLayout

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

    <GridLayout
        android:id="@+id/grid"
        android:layout_width="fill_parent"
        android:layout_height="0dip"
        android:layout_weight="1"
        android:numColumns="2"
        android:padding="5dp" />

    <EditText
        android:id="@+id/edit"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:ems="10"
        android:padding="5dp" >

        <requestFocus />
    </EditText>

</LinearLayout>

那时我经历过LinearLayout更快、更健壮,RelativeLayout但这更多的是个人意见。

于 2013-09-12T16:49:00.683 回答
0

这应该做你的工作。

<RelativeLayout 
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@android:color/white">

    <GridView
      android:id="@+id/grid"
      android:layout_width="match_parent"
      android:numColumns="2"
      android:layout_height="0dp"
      android:layout_weight="8"
      android:padding="5dp"/>

    <EditText
      android:id="@+id/edit"
      android:layout_width="match_parent"
      android:layout_height="0dp"
      android:layout_below="@+id/grid"
      android:layout_weight="2"
      android:padding="5dp"/>

</RelativeLayout>
于 2013-09-12T15:54:35.563 回答