原文链接:http://blog.csdn.net/gaojinshan/article/details/17055511 我想在同一个界面中,使用两个GridView,两个GridView一起上下滚动:如果直接将两个GridView添加到同一个界面上,它们是各自滚动的.因此,我考虑使用SrollView,将它们包装一下!但这样做会提示如下信息:The vertically scrolling ScrollView should not contain another vertically sc…
重写ListView.GridView即可: public class MyListView extends ListView { public MyListView(Context context) { // TODO Auto-generated method stub super(context); } public MyListView(Context context, AttributeSet attrs) { // TODO Auto-generated method stub su…
为了让SrollView中嵌套ExpandableListView,我们就得改ListView的高度,所以写一个类继承于ExpandableListview: import android.content.Context; import android.util.AttributeSet; import android.widget.ExpandableListView; /** * Created by liang on 2016/8/21. */ public class NestedExp…