资源 gridview

来源:互联网 发布:js prompt 使用方法 编辑:程序博客网 时间:2024/06/04 19:56
android中定义的dimension单位有以下这些
  px: pixel(像素)
  in:inches(英寸)
  mm:millimeter(毫米)
  pt:point(点)
  dp:density密度

  sp:刻度


1. 通过Context获取Resources对象

 

在一个Acitvity或者一个Service中,我们直接this.getResources()方法,就可以获得Reousrces对象。其实Acitivity或者Service本质上就是一个Context,getResources()方法来自Context,而真正实现Context接口是ContextImpl类,所以调用的实际上时ContextImpl类的getResources()方法。

  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",两列之间的边距。



  •  public void onCreate(Bundle savedInstanceState) {  
  •       super.onCreate(savedInstanceState);  
  •       setContentView(R.layout.main);  
  •       GridView gridview = (GridView) findViewById(R.id.gridview);  
  •         
  •       //生成动态数组,并且转入数据  
  •       ArrayList<HashMap<String, Object>> lstImageItem = new ArrayList<HashMap<String, Object>>();  
  •       for(int i=0;i<10;i++)  
  •       {  
  •         HashMap<String, Object> map = new HashMap<String, Object>();  
  •         map.put("ItemImage", R.drawable.icon);//添加图像资源的ID  
  •     map.put("ItemText""NO."+String.valueOf(i));//按序号做ItemText  
  •         lstImageItem.add(map);  
  •       } 

  •       //生成适配器的ImageItem <====> 动态数组的元素,两者一一对应  
  •       SimpleAdapter saImageItems = new SimpleAdapter(this//没什么解释  
  •                                                 lstImageItem,//数据来源   
  •                                                 R.layout.night_item,//night_item的XML实现  
  •                                                   
  •                                                 //动态数组与ImageItem对应的子项          
  •                                                 new String[] {"ItemImage","ItemText"},   
  •                                                   
  •                                                 //ImageItem的XML文件里面的一个ImageView,两个TextView ID  
  •                                                 new int[] {R.id.ItemImage,R.id.ItemText});  
  •       //添加并且显示  
  •       gridview.setAdapter(saImageItems);  
  •       //添加消息处理  
  •       gridview.setOnItemClickListener(new ItemClickListener());  
  •   }  
  •     
  •   //当AdapterView被单击(触摸屏或者键盘),则返回的Item单击事件  
  •   class  ItemClickListener implements OnItemClickListener  
  •   {  
  • public void onItemClick(AdapterView<?> arg0,//The AdapterView where the click happened   
  •                                   View arg1,//The view within the AdapterView that was clicked  
  •                                   int arg2,//The position of the view in the adapter  
  •                                   long arg3//The row id of the item that was clicked  
  •                                   ) {  
  •     //在本例中arg2=arg3  
  •     HashMap<String, Object> item=(HashMap<String, Object>) arg0.getItemAtPosition(arg2);  
  •     //显示所选Item的ItemText  
  •     setTitle((String)item.get("ItemText"));  
  • }  
  •       
  •   } 











  • 0 0