通过网格/列表视图查看推出屏幕

时间:2013-09-12 15:34:21

标签: java android user-interface view

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

这就是我所拥有的:

<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,但这不是我想要的。

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

我希望我很清楚,不要犹豫,要求提供更多信息。

谢谢你

2 个答案:

答案 0 :(得分: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>

我经历LinearLayoutRelativeLayout更快更强大,但这更像是个人意见。

答案 1 :(得分: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>