gridview 九宫图

2023-10-14 12:10
文章标签 gridview 九宫

本文主要是介绍gridview 九宫图,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

本文来自http://blog.csdn.net/hellogv/

       GridView跟ListView都是比较常用的多控件布局,而GridView更是实现九宫图的首选!本文就是介绍如何使用GridView实现九宫图。GridView的用法很多,网上介绍最多的方法就是自己实现一个ImageAdapter继承BaseAdapter,再供GridView使用,类似这种的方法本文不再重复,本文介绍的GridView用法跟前文ListView的极其类似。。。。也算是我偷懒一下,嘻嘻嘻嘻。。。。

       先来贴出本文代码运行的结果:

1

 

本文需要添加/修改3个文件:main.xml、night_item.xml、JAVA源代码。

main.xml源代码如下,本身是个GirdView,用于装载Item:

[xhtml] view plain copy print ?
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <GridView xmlns:android="http://schemas.android.com/apk/res/android"   
  3.     android:id="@+id/gridview"  
  4.     android:layout_width="fill_parent"   
  5.     android:layout_height="fill_parent"  
  6.     android:numColumns="auto_fit"  
  7.     android:verticalSpacing="10dp"  
  8.     android:horizontalSpacing="10dp"  
  9.     android:columnWidth="90dp"  
  10.     android:stretchMode="columnWidth"  
  11.     android:gravity="center"  
  12. />  

介绍一下里面的某些属性:

android:numColumns="auto_fit" ,GridView的列数设置为自动

android:columnWidth="90dp",每列的宽度,也就是Item的宽度
android:stretchMode="columnWidth",缩放与列宽大小同步
android:verticalSpacing="10dp",两行之间的边距,如:行一(NO.0~NO.2)与行二(NO.3~NO.5)间距为10dp
android:horizontalSpacing="10dp",两列之间的边距。

 

接下来介绍night_item.xml,这个XML跟前面ListView的ImageItem.xml很类似:

[xhtml] view plain copy print ?
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <RelativeLayout   
  3.          xmlns:android="http://schemas.android.com/apk/res/android"   
  4.          android:layout_height="wrap_content"   
  5.          android:paddingBottom="4dip" android:layout_width="fill_parent">  
  6.          <ImageView   
  7.                android:layout_height="wrap_content"   
  8.                android:id="@+id/ItemImage"   
  9.                android:layout_width="wrap_content"   
  10.                android:layout_centerHorizontal="true">   
  11.          </ImageView>  
  12.          <TextView   
  13.                android:layout_width="wrap_content"   
  14.                android:layout_below="@+id/ItemImage"   
  15.                android:layout_height="wrap_content"   
  16.                android:text="TextView01"   
  17.                android:layout_centerHorizontal="true"   
  18.                android:id="@+id/ItemText">  
  19.          </TextView>  
  20. </RelativeLayout>  

 

最后就是JAVA的源代码了,也跟前面的ListView的JAVA源代码很类似,不过多了“选中”的事件处理:

[java] view plain copy print ?
  1.   public void onCreate(Bundle savedInstanceState) {  
  2.       super.onCreate(savedInstanceState);  
  3.       setContentView(R.layout.main);  
  4.       GridView gridview = (GridView) findViewById(R.id.gridview);  
  5.         
  6.       //生成动态数组,并且转入数据  
  7.       ArrayList<HashMap<String, Object>> lstImageItem = new ArrayList<HashMap<String, Object>>();  
  8.       for(int i=0;i<10;i++)  
  9.       {  
  10.         HashMap<String, Object> map = new HashMap<String, Object>();  
  11.         map.put("ItemImage", R.drawable.icon);//添加图像资源的ID  
  12.     map.put("ItemText""NO."+String.valueOf(i));//按序号做ItemText  
  13.         lstImageItem.add(map);  
  14.       }  
  15.       //生成适配器的ImageItem <====> 动态数组的元素,两者一一对应  
  16.       SimpleAdapter saImageItems = new SimpleAdapter(this//没什么解释  
  17.                                                 lstImageItem,//数据来源   
  18.                                                 R.layout.night_item,//night_item的XML实现  
  19.                                                   
  20.                                                 //动态数组与ImageItem对应的子项          
  21.                                                 new String[] {"ItemImage","ItemText"},   
  22.                                                   
  23.                                                 //ImageItem的XML文件里面的一个ImageView,两个TextView ID  
  24.                                                 new int[] {R.id.ItemImage,R.id.ItemText});  
  25.       //添加并且显示  
  26.       gridview.setAdapter(saImageItems);  
  27.       //添加消息处理  
  28.       gridview.setOnItemClickListener(new ItemClickListener());  
  29.   }  
  30.     
  31.   //当AdapterView被单击(触摸屏或者键盘),则返回的Item单击事件  
  32.   class  ItemClickListener implements OnItemClickListener  
  33.   {  
  34. public void onItemClick(AdapterView<?> arg0,//The AdapterView where the click happened   
  35.                                   View arg1,//The view within the AdapterView that was clicked  
  36.                                   int arg2,//The position of the view in the adapter  
  37.                                   long arg3//The row id of the item that was clicked  
  38.                                   ) {  
  39.     //在本例中arg2=arg3  
  40.     HashMap<String, Object> item=(HashMap<String, Object>) arg0.getItemAtPosition(arg2);  
  41.     //显示所选Item的ItemText  
  42.     setTitle((String)item.get("ItemText"));  
  43. }  
  44.       
  45.   } 

这篇关于gridview 九宫图的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/210412

相关文章

asp.net 中GridView的使用方法

可以看看,学习学习 https://blog.csdn.net/zou15093087438/article/details/79637042

Android 横向列表GridView 实现横向滚动

Android 横向列表实现,可左右滑动,如下图   1.主界面布局代码:activity_main.xml a.包裹HorizontalScrollView控件是GirdView横向滚动的基本条件b.GirdView外包裹LinearLayout是java代码中参数设置的必要条件 <?xml version="1.0" encoding="utf-8"?><Line

GridView生成的HTML代码

<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="false" CssClass="tablecss">         <Columns>             <asp:TemplateField HeaderText="编号" HeaderStyle-CssClass="aaa" ItemSty

可以折叠Gridview

可以折叠Gridview 实现原理 1、折叠实现 重写gridview的setAdapter方法 @Overridepublic void setAdapter(ListAdapter adapter) {if (foldNm > 0) {//进行折叠adapter = new FoldViewGridAdapter(adapter, foldNm);}super.setAd

Flutter——最详细(GridView)使用教程

GridView简介: 项目地址 可以创建网格列表视图;主要通过Count、extent、custom、builder构造列表。有内边距、是否反向、滑动控制器等属性。 四个属性使用场景,Count、extent、custom适用于子布局较少时使用。可能会用到上拉刷新,数据较多时,则使用builder属性。 使用场景: 列如:支付宝首页的网格布局,等一系列网格样式的UI

android gridview 停止滚动

http://blog.csdn.net/yaphetzhao/article/details/50544105 参考上面的博客,关键代码我就贴出来吧: public void stopGridViewScroll(){Field mFlingEndField = null;Method mFlingEndMethod;try {mFlingEndField = AbsListView

【 html+css 绚丽Loading 】000028 九宫幻明轮

前言:哈喽,大家好,今天给大家分享html+css 绚丽Loading!并提供具体代码帮助大家深入理解,彻底掌握!创作不易,如果能帮助到大家或者给大家一些灵感和启发,欢迎收藏+关注哦 💕 目录 📚一、效果📚二、信息💡1.简介:💡2.外观描述:💡3.使用方式:💡4.战斗方式:💡5.提升:💡6.传说: 📚三、上代码,可以直接复制使用🗂️目录✍️html✍️cs

GridView动态设置Item的宽高 第一个Item显示不正常

问题:       最近在项目中遇到一个很奇怪的问题,在做一种类似QQ空间图片显示效果中,我用的XLisview嵌套GridView,然后计算设置Gridview的item高度,设置为为正方形,并用Glide框架加载图片;     结果,在滚动时,第一个item就不能正常显示了。。。很郁闷。。源码是这样的 ViewHolder holder; if (convertView == null)

Gridview图片正方形

现在在Android应用中,GridView中每个Item都是正方形的场景越来越常见。比如 陌陌 的搜索结果界面 陌陌的搜索界面显示 Android手机和IPhone不同, IPhone硬件是苹果自己出的,屏幕尺寸基本没啥太大差别,所以很好适配。 而Android就不一样了,中高低档手机都有,屏幕尺寸严重不统一,如何做到一种实现适配各种Android手机屏幕才是关键。 今天

Android中ListView、GridView的通用适配封装简化代码

转载请注明出处:http://blog.csdn.net/u013038616/article/details/50733935 ListView和GridView是我们平时经常用来展示集合数据,每次都要为每种列表建一个专门的适配,虽然创建适配器灰常简单,但是每次都会有很多类似的代码,作为人类中最懒的程序“猿”,你能忍受这种重复的操作么?不管你能忍不能忍,反正我是不忍了。于是今天的主角通用