Gridview最后一行被截断

时间:2016-06-21 06:57:28

标签: android android-gridview

我的项目布局如下:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
android:orientation="vertical"
android:paddingBottom="16dp"
android:gravity="center">
<ImageView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:id="@+id/iv"
    android:adjustViewBounds="true"
    android:src="@drawable/linianzhenti"/>
<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/tv"
    android:layout_marginTop="8dp"
    android:text="aaa"
    android:textSize="16sp"/>

然后是我的主要布局:

<ScrollView 
android:layout_width="match_parent"
android:layout_height="match_parent">

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/grey"
    android:orientation="vertical">
    ...
    ...
    <com.kumakitty.wenquanedu.MyGridView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="8dp"
        android:horizontalSpacing="16dp"
        android:id="@+id/gridhome2"
        android:numColumns="2">

    </com.kumakitty.wenquanedu.MyGridView>
</LinearLayout>

这是MyGridView.class:

public class MyGridView extends GridView {
public MyGridView(Context context, AttributeSet attrs) {
    super(context, attrs);
}

public MyGridView(Context context) {
    super(context);
}

public MyGridView(Context context, AttributeSet attrs, int defStyle) {
    super(context, attrs, defStyle);
}

@Override
public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
    int mExpandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2, MeasureSpec.AT_MOST);
    super.onMeasure(widthMeasureSpec, mExpandSpec);
}
}

使用ImageLoader显示图像 我认为这可能是由图像的各种高度引起的 我该如何解决? 任何帮助将不胜感激:) 请原谅我可怜的英语OTL

1 个答案:

答案 0 :(得分:0)

在ScrollView中使用GridView是非常糟糕的做法。您可以使用支持嵌套滚动所需类型效果的最新视图。

请参阅下面显示最佳做法的链接:

How to use RecyclerView inside NestedScrollView?