Note that there are some explanatory texts on larger screens.

plurals
  1. POAndroid RelativeLayout height not following GridView height
    primarykey
    data
    text
    <p>I am having problem with a GridView within a RelativeLayout, which is again within a ScrollView. The problem is that the height of the RelativeLayout is not following the height of the contents of the GridView. When there are more than one rows, the GridView is clipped and a scrollbar appears, which is undesirable. I have tried to illustrate my problem using an screenshot from the Android hierarchy viewer. You can see how the red RelativeLayout box has clipped the second row of the GridView. I am pasting the XML layout of the page (page.xml) and the individual grid item (griditem.xml). I have used the following code to inflate the grid items in the gridAdapter code:</p> <p>/***********Start of gridAdapter snippet**********************/</p> <pre><code>public View getView(int position, View convertView, ViewGroup parent) { View v; if(convertView==null){ li = LayoutInflater.from(mContext); v = li.inflate(R.layout.griditem, null); //code for fetching textView and imageUrl content TextView tv = (TextView)v.findViewById(R.id.icon_text); tv.setText(textContent); ImageView iv = (ImageView)v.findViewById(R.id.icon_image); //code for fetching and attaching image to imageView } else { v = convertView; } return v; } </code></pre> <p>/***********End of gridAdapter snippet**********************/</p> <p>/***********Start page.xml**********************/ </p> <pre><code>&lt;TextView android:id="@+id/title" android:layout_weight="1" android:layout_width="320dip" android:layout_height="wrap_content" android:singleLine="false" android:textStyle="bold" android:textSize="14dip" /&gt; &lt;ImageView android:id="@+id/image" android:layout_below="@+id/title" android:adjustViewBounds="true" android:layout_width="128dip" android:layout_height="96dip" android:layout_marginRight="4dip" /&gt; &lt;TextView android:id="@+id/name" android:layout_weight="1" android:layout_below="@+id/title" android:layout_toRightOf="@+id/image" android:layout_width="192dip" android:layout_height="wrap_content" android:paddingTop="2dip" android:textSize="12dip" android:paddingLeft="2dip" /&gt; &lt;TextView android:id="@+id/location" android:layout_weight="1" android:layout_below="@+id/name" android:layout_toRightOf="@+id/image" android:layout_width="192dip" android:layout_height="wrap_content" android:paddingTop="2dip" android:textSize="12dip" android:paddingLeft="2dip" /&gt; &lt;TextView android:id="@+id/date1" android:layout_weight="1" android:layout_below="@+id/location" android:layout_toRightOf="@+id/image" android:layout_width="192dip" android:layout_height="wrap_content" android:paddingTop="2dip" android:textSize="10dip" android:paddingLeft="2dip" /&gt; &lt;TextView android:id="@+id/date2" android:layout_weight="1" android:layout_below="@+id/date1" android:layout_toRightOf="@+id/image" android:layout_width="192dip" android:layout_height="wrap_content" android:paddingTop="2dip" android:textSize="10dip" android:paddingLeft="2dip" /&gt; &lt;Button android:id="@+id/button1" android:text="buttonText1" android:layout_weight="1" android:layout_below="@+id/image" android:layout_height="wrap_content" android:layout_width="wrap_content" android:layout_marginLeft="96dip" /&gt; &lt;Button android:id="@+id/button2" android:text="buttonText2" android:layout_weight="1" android:layout_below="@+id/image" android:layout_toRightOf="@+id/button1" android:layout_height="wrap_content" android:layout_width="wrap_content" /&gt; &lt;Button android:id="@+id/button3" android:text="Text" android:layout_weight="1" android:layout_below="@+id/image" android:layout_toRightOf="@+id/button2" android:layout_height="wrap_content" android:layout_width="wrap_content" /&gt; &lt;GridView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/gridview" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_below="@+id/button1" android:layout_weight="1" android:numColumns="auto_fit" android:verticalSpacing="10dip" android:horizontalSpacing="10dip" android:stretchMode="columnWidth" android:gravity="center" /&gt; </code></pre> <p> /***********End page.xml**********************/</p> <p>/***********Start griditem.xml**********************/ <p>android:gravity="center_horizontal"> </p> <p>/***********End griditem.xml**********************/</p> <p>Can you tell me what I should do to have the height of the RelativeLayout follow the full length of the gridView?</p> <p>Thanks, Kuntal![alt text][1]</p> <p>Here is the screenshot: <a href="http://tinypic.com/r/98rs4n/4" rel="noreferrer">http://tinypic.com/r/98rs4n/4</a></p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload