Android RelativeLayout高度不符合GridView高度
我在一个RelativeLayout中出现了一个GridView问题,它又是一个ScrollView。 问题在于RelativeLayout的高度不跟随GridView内容的高度。 当有多行时,GridView会被剪切并出现一个滚动条,这是不可取的。 我试图用Android层次结构查看器中的截图来说明我的问题。 您可以看到红色RelativeLayout框如何剪切GridView的第二行。 我正在粘贴页面(page.xml)的XML布局和单个网格项目(griditem.xml)。 我已经使用下面的代码来扩充gridAdapter代码中的网格项目:
/ *********** gridAdapter snippet的开始********************** /
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;
}
/ *********** gridAdapter snippet的结尾********************** /
/ ***********启动page.xml ********************** /
<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"
/>
<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"
/>
<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"
/>
<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"
/>
<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"
/>
<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"
/>
<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"
/>
<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"
/>
<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"
/>
<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"
/>
/ ***********结束page.xml ********************** /
/ ***********启动griditem.xml ********************** /
机器人:重力= “CENTER_HORIZONTAL”>
/ ***********结束griditem.xml ********************** /
你能告诉我该怎么做才能让RelativeLayout的高度跟随gridView的全长?
谢谢,Kuntal![alt text] [1]
以下是截图:http://tinypic.com/r/98rs4n/4
到目前为止,我已经能够解决这个问题的唯一方法是一点小事。
一旦知道了将要加载到网格中的项目数量,您可以手动设置高度:
final int gridWidth = myGrid.getWidth();
final int cellWidthDP = 50;
final int cellHeightDP = 80;
final Resources r = getResources();
final double cellWidthPx = TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, cellWidthDP, r.getDisplayMetrics());
final double cellHeightPx = TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, cellHeightDP, r.getDisplayMetrics());
final int itemsPerRow = (int) Math.floor((double) gridWidth / cellWidthPx);
final int rowCount = (int) Math.ceil((double) itemCount / itemsPerRow);
final LayoutParams prm = myGrid.getLayoutParams();
prm.height = (int) Math.ceil((double) rowCount * cellHeightPx);
myGrid.setLayoutParams(prm);
我很抱歉,但最后的代码片段没有正确显示。 因此我再次粘贴它:
机器人:重力= “CENTER_HORIZONTAL”>
如线程http://code.google.com/p/android/issues/detail?id=1394中所述
使用这个
convertView = mInflater.inflate(R.layout.my_row, parent, false);
修复了froyo下的问题。
链接地址: http://www.djcxy.com/p/47583.html上一篇: Android RelativeLayout height not following GridView height