listview嵌套gridview
Posted 嘉禾世兴
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了listview嵌套gridview相关的知识,希望对你有一定的参考价值。
1.首先要自定义一个继承gridview的类
public class MyGridView extends GridView { public boolean hasScrollBar = true; public MyGridView(Context context) { super(context); } public MyGridView(Context context, AttributeSet attrs) { super(context, attrs); } @Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { int expandSpec = MeasureSpec.makeMeasureSpec(Integer.MAX_VALUE >> 2,MeasureSpec.AT_MOST); super.onMeasure(widthMeasureSpec, expandSpec); } }
2.在布局中引用这个自定义gridview
com.example.administrator.tunrb.MyFragment.Single_fragment.MyGridView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/single_gridview" android:layout_width="match_parent" android:layout_height="match_parent" android:columnWidth="80dp" android:background="#ffffff" android:horizontalSpacing="5dp" android:numColumns="auto_fit" android:verticalSpacing="5dp"></com.example.administrator.tunrb.MyFragment.Single_fragment.MyGridView>
以上是关于listview嵌套gridview的主要内容,如果未能解决你的问题,请参考以下文章
android listView嵌套gridview的使用心得
android listView嵌套gridview的使用心得
android listview里面能嵌套gridview吗