0

我需要一个按钮、一个网格视图和一个按钮,垂直排列。我可以看到 Button 和 GridView 但看不到在网格视图之后声明的按钮。为什么?网格视图声明下方的任何视图都会发生这种情况。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical" >
        <TextView
        android:id="@+id/text_view"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="center_horizontal|center_vertical"
        android:layout_marginTop="20dip"
        android:text="Fragment1"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:textSize="30dip" />

        <Button 
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Button1"/>


     <GridView 
          android:id="@+id/gridview"
          android:layout_width="wrap_content" 
          android:layout_height="match_parent"overla
          android:columnWidth="90dp"
          android:numColumns="auto_fit"
          android:verticalSpacing="10dp"
          android:horizontalSpacing="10dp"
          android:stretchMode="columnWidth"
          android:gravity="center"/>                            

            <Button 
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Button1"/>
</LinearLayout>
4

3 回答 3

1

当您采用垂直方向的 LinearLayout 时,wrap_content请指定 GridView 的高度。

现在,如果您想要屏幕下方的最后一个按钮,则将其包含android:layout_weight="1"在 GridView 中。

于 2013-02-05T06:17:27.363 回答
0

尝试这个

  <RelativeLayout 
   android:layout_width="match_parent"
   android:layout_height="match_parent">
 <Button 
     android:id="@+id/button1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Button1"/>

 <Button 
    android:id="@+id/button2"  
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:text="Button1"/>

于 2013-02-05T06:10:40.070 回答
0

由于您已将 gridview 的高度声明为 match_parent,因此如果找不到足够的屏幕空间来显示它,它应该与在其下方声明的视图重叠。您应该尝试在gridview 下声明的视图上调用bringtoFront() 方法。从我的角度来看,另一件事是尽可能尝试 relativeLayout,并将 android:layout_above 和 android:layout_below 与 gridview 一起使用。

于 2013-02-05T06:31:07.160 回答