我已经对该问题进行了一些研究,找到了一些主题,但没有任何帮助。
这就是我所拥有的:
<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 但这不是我想要的。
我想知道是否有任何方法可以使编辑文本始终可见,即使网格视图中有很多元素,并且将编辑文本保持在网格下方并且不与父级底部对齐。我也尝试使用滚动视图而不是相对布局......但这也是错误的,因为在滚动视图中使用网格视图存在太多错误。
我希望我很清楚,不要犹豫,询问更多信息。
谢谢