博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android开发学习之Gallery和GridView浅析
阅读量:5745 次
发布时间:2019-06-18

本文共 1011 字,大约阅读时间需要 3 分钟。


  1. <
    GridViewxmlns:android="http://schemas.android.com/apk/res/android"
  2. android:id="@+id/gridview"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:columnWidth="90dp"
  6. android:numColumns="auto_fit"
  7. android:verticalSpacing="10dp"
  8. android:horizontalSpacing="10dp"
  9. android:stretchMode="columnWidth"
  10. android:gravity="center"
  11. />

picture_item.xml

  1. <?xmlversion="1.0"encoding="utf-8"?>
  2. <LinearLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:id="@+id/root"
  5. android:orientation="vertical"
  6. android:layout_width="wrap_content"
  7. android:layout_height="wrap_content"
  8. android:layout_marginTop="5dp"
  9. >
  10. <ImageView
  11. android:id="@+id/image"
  12. android:layout_width="100dp"
  13. android:layout_height="150dp"
  14. android:layout_gravity="center"
  15. android:scaleType="fitXY"
  16. android:padding="4dp"
  17. />
  18. <TextView
  19. android:id="@+id/title"
  20. android:layout_width="wrap_content"
  21. android:layout_height="wrap_content"
  22. android:layout_gravity="center"
  23. android:gravity="center_horizontal"
  24. />
  25. </LinearLayout>

效果图:

转载地址:http://cjxzx.baihongyu.com/

你可能感兴趣的文章
windows 8 微软拼音输入法
查看>>
Windows UI风格的设计(7)
查看>>
SQL中使用WITH AS提高性能 使用公用表表达式(CTE)简化嵌套SQL
查看>>
oracle 强行杀掉一个用户连接
查看>>
Git提交本地库代码到远程服务器的操作
查看>>
让你快速上手的Glide4.x教程
查看>>
浮动和清除(闭合)浮动
查看>>
LR录制脚本时IE打不开的原因
查看>>
Sublime Text 2.0.2,Build 2221注册码
查看>>
最长递增子序列 动态规划
查看>>
原生CSS设置网站主题色—CSS变量赋值
查看>>
webpack 4.0 中 clean-webpack-plugin 的使用
查看>>
POJ 2236 Wireless Network (并查集)
查看>>
python分类
查看>>
GitBlit (1)-- 在linux 安装 GitBlit 并运行
查看>>
程序是如何执行的(一)a=a+1
查看>>
18 已知下面的字符串是通过RANDOM随机数变量md5sum|cut-c 1-8截取后的结果
查看>>
BZOJ - 3578: GTY的人类基因组计划2
查看>>
爱——无题
查看>>
分布式服务框架原来与实践 读书笔记一
查看>>