Android GridView简单实例
更新时间:2017年01月25日 09:56:46 作者:stevefat
这篇文章主要为大家详细介绍了Android GridView简单实例,简单实现九宫格效果,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
也是今天用到的一个东西,就是简单实现九宫格的Demo
1.就是定义各种layout 和对应的item
我的:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#fff" android:orientation="vertical" > <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal" > <GridView android:id="@+id/gridView" android:layout_width="match_parent" android:layout_height="wrap_content" android:numColumns="3" android:background="#fff"></GridView> </LinearLayout> </LinearLayout>
itme的
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:padding="10dp" android:layout_gravity="center" android:background="#fff" android:orientation="vertical" > <ImageView android:id="@+id/iv" android:layout_width="wrap_content" android:layout_height="wrap_content" /> <TextView android:id="@+id/tv" android:paddingTop="10dp" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textColor="#000" android:text="管线" /> </LinearLayout>
开始准备数据:
/** * 准备显示的数据 */ public void initData() { // 生成动态数组,并且转入数据 ,暂时就这样来处理 lstImageItem = new ArrayList<HashMap<String, Object>>(); for (int i = 0; i < 3; i++) { HashMap<String, Object> map = new HashMap<String, Object>(); map.put("ItemImage", R.drawable.osg);// 添加图像资源的ID map.put("ItemText", "各种管线" + String.valueOf(i));// 按序号做ItemText lstImageItem.add(map); } }
设置显示
gv = (GridView) view.findViewById(R.id.gridView); SimpleAdapter adapter = new SimpleAdapter(this, lstImageItem, R.layout.gridview_item, new String[] { "ItemImage", "ItemText" }, new int[] { R.id.iv, R.id.tv }); gv.setAdapter(adapter);
最后扔一张效果图
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
相关文章
Android仿微信菜单(Menu)(使用C#和Java分别实现)
这篇文章主要介绍了Android仿微信菜单(Menu)(使用C#和Java分别实现),本文分别给出C#和Java版的运行效果及实现代码,需要的朋友可以参考下2015-06-06Android Studio下添加assets目录的实现方法
下面小编就为大家带来一篇Android Studio下添加assets目录的实现方法。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧2017-03-03Android TextView前增加红色必填项星号*的示例代码
TextView是一个完整的文本编辑器,但是基类为不允许编辑,其子类EditText允许文本编辑,这篇文章主要介绍了Android TextView前增加红色必填项星号*的示例代码,需要的朋友可以参考下2024-03-03Android自定义下拉刷新控件RefreshableView
这篇文章主要介绍了Android自定义下拉刷新控件RefreshableView,支持所有控件的下拉刷新,具有一定的参考价值,感兴趣的小伙伴们可以参考一下2016-11-11
最新评论