Android学习之——如何将GridView内嵌在ScrollView中

      最近在做一个项目,有一个需求是在ScrollView中内嵌一个GridView。

      刚开始,我是以为能直接内嵌在里面:

 1 <ScrollView
 2         android:layout_width="match_parent"
 3         android:layout_height="0dp"
 4         android:layout_weight="5.5">
 5         <GridView
 6             android:id="@+id/gridView"
 7             android:layout_width="fill_parent"
 8             android:layout_height="fill_parent"
 9             android:numColumns="auto_fit"
10             android:columnWidth="90dp"
11             android:gravity="center"
12             android:listSelector="@drawable/base_item_selector"
13             android:stretchMode="columnWidth"
14             ></GridView>
15       </ScrollView>
16     <RelativeLayout

 

 

1 mGridView = (GridView)findViewById(R.id.gridView);
2           ArrayAdapter adapter = new ArrayAdapter(this,android.R.layout.simple_list_item_1,
3                   letters);
4           mGridView.setAdapter(adapter);

 

   运行效果:

           只显示一行。

                   

     分析原因:ScrollView和GridView都带滚动条,引起冲突,导致GridView只能显示一行。

    这就需要自定义GirdView:

  

 1 public class MyGridView extends GridView {
 2     public MyGridView(Context context, AttributeSet attrs) {
 3         super(context, attrs);
 4     }
 5     public MyGridView(Context context) {
 6         super(context);
 7     }
 8     public MyGridView(Context context, AttributeSet attrs, int defStyle) {
 9         super(context, attrs, defStyle);
10     }
11     @Override
12     public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
13         int expandSpec = MeasureSpec.makeMeasureSpec(
14                 Integer.MAX_VALUE >> 2, MeasureSpec.AT_MOST);
15         super.onMeasure(widthMeasureSpec, expandSpec);
16     }
17 }

 1 <ScrollView
 2         android:layout_width="match_parent"
 3         android:layout_height="0dp"
 4         android:layout_weight="5.5">
 5         <com.johntsai.view.MyGridView
 6             android:id="@+id/gridView"
 7             android:layout_width="fill_parent"
 8             android:layout_height="fill_parent"
 9             android:numColumns="auto_fit"
10             android:columnWidth="90dp"
11             android:gravity="center"
12             android:listSelector="@drawable/base_item_selector"
13             android:stretchMode="columnWidth"
14             ></com.johntsai.view.MyGridView>
15       </ScrollView>
16     <RelativeLayout

运行效果:

   完美解决。

   

原文地址:http://www.cnblogs.com/JohnTsai/p/4231230.html

时间: 2024-11-02 03:25:07

Android学习之——如何将GridView内嵌在ScrollView中的相关文章

mongodb java-怎样在java中调用Mongodb内嵌文档中的值?

问题描述 怎样在java中调用Mongodb内嵌文档中的值? 大概的数据结构如下所示,可以使用mongodb的命令 db.first.find( {"EventParameter.TotalSeconds":3} )查询TotalSeconds为某一个数值,比如3数据,但是在java中怎么获取到所有的数值呢?如下面一行代码中get函数中的参数应该怎么写才能获取所有的时间? float seconds=Float.parseFloat(record.get("TotalSeco

求教我用dsoframer.ocx将excel文档内嵌在winform中,如何将这个子界面关闭,方便下次重新打开

问题描述 c#求教我用dsoframer.ocx将excel文档内嵌在winform的子界面中,如何将这个子界面正确的关闭,方便下次重新打开,axFramerControl.Open(System.IO.Directory.GetCurrentDirectory()+"\excel1.XLS");我用的是这个打开语句,请问我要将这个子界面关闭该如何关闭,方便再次打开.谢谢! 解决方案 解决方案二:放到一个单独窗体里打开,关闭窗体也就关了

Android学习教程之动态GridView控件使用(6)

本文实例为大家分享了Android动态GridView控件使用的具体代码,供大家参考,具体内容如下 MainActivity.java代码: package siso.haha; import android.content.Intent; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button

gcc对C语言的扩展:语句内嵌表达式(statement-embedded expression)

在gnu c 中,用括号将复合语句括起来也形成了表达式.他允许你在一个表达式内使用循环,跳转和局部变量. 一个复合语句是用大括号{}括起来的一组语句.在包含语句的表达式这种结构中,再用括号( )将大括号括起来,例如: ({ int y = foo (); int z; if (y > 0) z = y; else z = - y; z; }) 就是一个合法表达式,用于计算foo( )函数返回值的绝对值. 在上面的复合语句中,最后的一句必须是一个以分号结尾的表达式.这个表达式代表了整个结构的值.如

grunt-inline:一个资源内嵌插件

一.插件简介 将引用的外部资源,如js.css.img等,内嵌到引用它们的文件里去. 二.使用场景 在项目中,出于某些原因,有的时候我们需要将一些资源,比如js脚本内嵌到页面中去.比如我们的html页面中有这么段小脚本,如果这么直接发布到 线上,就会多了一个请求,这从性能优化的角度来说是不合理的. <script src="js/log.js"></script> 那么,我们需要做的事情,就是在项目发布上线前,将这段脚本嵌入到html页面里去.当然可以手工完成,

Android应用中内嵌SQLite数据库的基本操作指南_Android

一.首先写一个类继承SQLiteOpenHelper类 重写他的方法指定db的名称.版本,重写oncreat和onUpgrade方法,写SQL语句创建表 public class MySQLiteOpenhelper extends SQLiteOpenHelper { private static String name = "person.db"; private static int version = 1; public MySQLiteOpenhelper(Context c

Android APP内嵌wap手机网站的实例

我们的内嵌Android APP手机站点m.baidu.com,不能显示标题栏,点击网页的超链接,不会弹出系统自带浏览器. 布局web.xml 在layouts目录下新建布局文件web.xml,内容如下 <?xml version="1.0" encoding="utf-8"?><linearlayout xmlns:android="http://schemas.android.com/apk/res/android" and

关于inline view内嵌视图的学习

看一篇的时候碰巧看到有关inline view的概念,不太熟悉,查了下. 所谓inline view,也叫内前视图,说白了,就是执行的时候才建立的视图.例如select ... from (select ... from (select ...)),这里作为from表来使用的select语句创建的就是一个内嵌视图,个人理解,之所以叫内嵌,就是因为它是放在一个语句中的,而且可以多次嵌套,但这种内嵌视图只能在当前的SQL中使用,不能像CREATE VIEW创建的视图那样重复使用,不是一个实际存在的对

Android 工程内嵌资源文件的两种方法_Android

方法一 res/raw目录下存放,比如cwj.dat一个二进制文件,我们可以读取可以直接 复制代码 代码如下: InputStream is=context.getResources().openRawResource(R.raw.cwj); 方法二 工程根目录下的assets文件夹中存放,比如assets/cwj.dat 这样我们使用下面的代码 复制代码 代码如下: AssetManager am = context.getAssets(); InputStream is = am.open(