应无所住,而生其心
排名
1
文章
860
粉丝
112
评论
163
net core webapi post传递参数
庸人 : 确实坑哈,我也是下班好了好几次,发现后台传递对象是可以的,但...
百度编辑器自定义模板
庸人 : 我建议换个编辑器,因为现在百度富文本已经停止维护了,用tinymec...
ICP备案 :渝ICP备18016597号-1
网站信息:2018-2025TNBLOG.NET
技术交流:群号656732739
联系我们:contact@tnblog.net
公网安备:50010702506256
欢迎加群交流技术

android 布局实例解析 格子菜单效果

4912人阅读 2016/3/5 22:02 总访问:5194330 评论:0 收藏:0 手机
分类: 移动开发

使用android权重布局,使每个格子和间隔在不同手机中自动适配:

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:background="#ffffff"
  6. android:orientation="vertical">
  7. <LinearLayout
  8. android:layout_width="match_parent"
  9. android:layout_height="150dp"
  10. android:background="@drawable/morebg"
  11. >
  12. </LinearLayout>
  13. <LinearLayout
  14. android:layout_width="match_parent"
  15. android:layout_height="wrap_content"
  16. android:layout_marginTop="10dp"
  17. android:orientation="horizontal">
  18. <!-- 权重布局 充当间隔 自适应所有屏幕 -->
  19. <LinearLayout
  20. android:layout_width="0dp"
  21. android:layout_weight="1"
  22. android:layout_height="60dp"
  23. >
  24. </LinearLayout>
  25. <LinearLayout
  26. android:layout_width="0dp"
  27. android:layout_weight="10"
  28. android:layout_height="wrap_content"
  29. android:background="#f2f2f2"
  30. android:id="@+id/more_oilreports"
  31. android:gravity="center_horizontal"
  32. android:orientation="vertical">
  33. <ImageView
  34. android:layout_width="60dp"
  35. android:layout_height="60dp"
  36. android:layout_marginTop="6dp"
  37. android:src="@drawable/more_ovil"
  38. />
  39. <TextView
  40. android:layout_width="wrap_content"
  41. android:layout_height="wrap_content"
  42. android:text="油量数据报表"
  43. android:layout_marginTop="2dp"
  44. android:layout_marginBottom="3dp"
  45. />
  46. </LinearLayout>
  47. <!-- 权重布局 充当间隔 自适应所有屏幕 -->
  48. <LinearLayout
  49. android:layout_width="0dp"
  50. android:layout_weight="1"
  51. android:layout_height="60dp"
  52. >
  53. </LinearLayout>
  54. <LinearLayout
  55. android:layout_width="0dp"
  56. android:layout_weight="10"
  57. android:layout_height="wrap_content"
  58. android:background="#f2f2f2"
  59. android:id="@+id/linestatisticsManager"
  60. android:gravity="center_horizontal"
  61. android:orientation="vertical">
  62. <ImageView
  63. android:layout_width="60dp"
  64. android:layout_height="60dp"
  65. android:layout_marginTop="6dp"
  66. android:src="@drawable/more_linecount"
  67. />
  68. <TextView
  69. android:layout_width="wrap_content"
  70. android:layout_height="wrap_content"
  71. android:text="航次统计管理"
  72. android:layout_marginTop="2dp"
  73. android:layout_marginBottom="3dp"
  74. />
  75. </LinearLayout>
  76. <!-- 权重布局 充当间隔 自适应所有屏幕 -->
  77. <LinearLayout
  78. android:layout_width="0dp"
  79. android:layout_weight="1"
  80. android:layout_height="60dp"
  81. >
  82. </LinearLayout>
  83. <LinearLayout
  84. android:layout_width="0dp"
  85. android:layout_weight="10"
  86. android:background="#f2f2f2"
  87. android:layout_height="wrap_content"
  88. android:gravity="center_horizontal"
  89. android:id="@+id/moreexcetionalarm"
  90. android:orientation="vertical">
  91. <ImageView
  92. android:layout_width="60dp"
  93. android:layout_height="60dp"
  94. android:layout_marginTop="6dp"
  95. android:src="@drawable/more_alarm"
  96. />
  97. <TextView
  98. android:layout_width="wrap_content"
  99. android:layout_height="wrap_content"
  100. android:text="异常报警"
  101. android:layout_marginTop="2dp"
  102. android:layout_marginBottom="3dp"
  103. />
  104. </LinearLayout>
  105. <!-- 权重布局 充当间隔 自适应所有屏幕 -->
  106. <LinearLayout
  107. android:layout_width="0dp"
  108. android:layout_weight="1"
  109. android:layout_height="60dp"
  110. >
  111. </LinearLayout>
  112. </LinearLayout>
  113. <!-- 第二行菜单 用margin来调整间隔还是不科学 -->
  114. <LinearLayout
  115. android:layout_width="match_parent"
  116. android:layout_height="wrap_content"
  117. android:layout_marginTop="10dp"
  118. android:orientation="horizontal">
  119. <!-- 权重布局 充当间隔 自适应所有屏幕 -->
  120. <LinearLayout
  121. android:layout_width="0dp"
  122. android:layout_weight="1"
  123. android:layout_height="60dp"
  124. >
  125. </LinearLayout>
  126. <LinearLayout
  127. android:layout_width="0dp"
  128. android:layout_weight="10"
  129. android:layout_height="wrap_content"
  130. android:background="#f2f2f2"
  131. android:gravity="center_horizontal"
  132. android:id="@+id/manualaddoil"
  133. android:tag="testtag"
  134. android:orientation="vertical">
  135. <ImageView
  136. android:layout_width="60dp"
  137. android:layout_height="60dp"
  138. android:layout_marginTop="6dp"
  139. android:src="@drawable/moretest3"
  140. />
  141. <TextView
  142. android:layout_width="wrap_content"
  143. android:layout_height="wrap_content"
  144. android:text="加油上报"
  145. android:layout_marginTop="2dp"
  146. android:layout_marginBottom="3dp"
  147. />
  148. </LinearLayout>
  149. <!-- 权重布局 充当间隔 自适应所有屏幕 -->
  150. <LinearLayout
  151. android:layout_width="0dp"
  152. android:layout_weight="1"
  153. android:layout_height="60dp"
  154. >
  155. </LinearLayout>
  156. <LinearLayout
  157. android:layout_width="0dp"
  158. android:layout_weight="21"
  159. android:layout_height="wrap_content"
  160. android:background="#f2f2f2"
  161. android:gravity="center_horizontal"
  162. android:id="@+id/manuallossreport"
  163. android:orientation="vertical">
  164. <ImageView
  165. android:layout_width="60dp"
  166. android:layout_height="60dp"
  167. android:layout_marginTop="6dp"
  168. android:src="@drawable/moretest2"
  169. />
  170. <TextView
  171. android:layout_width="wrap_content"
  172. android:layout_height="wrap_content"
  173. android:text="损耗上报"
  174. android:layout_marginTop="2dp"
  175. android:layout_marginBottom="3dp"
  176. />
  177. </LinearLayout>
  178. <!-- 权重布局 充当间隔 自适应所有屏幕 -->
  179. <LinearLayout
  180. android:layout_width="0dp"
  181. android:layout_weight="1"
  182. android:layout_height="60dp"
  183. >
  184. </LinearLayout>
  185. </LinearLayout>
  186. </LinearLayout>

这里使用LinearLayout作为间隔比使用margin去调整要相对科学一点,能保证每个间距相同,
而且格子的第二列我们是左边宽度占一个,右边占2个,这种用margin去调整会比较麻烦,用LinearLayout去做间隔,
我们就可以计算了。上边间距占一,格子占10,下边肯定也一样,然后第二个格子的占用大小就可以用总数减去已经有了的直接得到了


欢迎加群讨论技术,1群:677373950(满了,可以加,但通过不了),2群:656732739。有需要软件开发,或者学习软件技术的朋友可以和我联系~(Q:815170684)

评价

解决android studio运行出现Session 'app': Error Installing APKs错误

之前项目好好的,早上打开突然报错Session &#39;app&#39;: Error Installing APKs解决方法:选择Build———— clean proje...

android使用MPandroidChart开源图表折线图

1. 将mpandroidchartlibrary-2-1-6.ja包copy到项目的libs中在引用2:布局文件&lt;com.github.mikephil.charting.charts.Line...

android 弹出选择框简单通用弹出选择框

制作一个简单通用的弹出选择框LinearLayoutll=(LinearLayout)getActivity().findViewById(R.id.log_sel_qyport); ll.set...

android studio打包脱坑1

打包时出现的&#39;:app:validateExternalOverrideSigning&#39;问题报错如下解决方法错误的原因是找不到这个签名文件。由于K...

javaandroid 使用socket.io-client连接nodejs websocket

socket.io-client相比SocketIO.jar使用起来更方便一点publicvoidconnection(finalMapAction_action){ try{ IO.Optionsopt...

javaandroid 使用SocketIO.jar连接nodejs websocket

socket.io-client版连接nodejs websockethttp://www.tnblog.net/aojiancc2/article/details/2562一:更具url建立连接,调用...

Xamarin: android.permission.CALL_PHONE 的权限问题

写个电话拨号器,很简单就一个Edittext和一个button,用来输入号码并且点击按钮拨打电话,但是写好以后报的是安全错误,我上...

android 漂亮的listview

效果如下:首先在drawable下定义选择器shape_bg_listview.xml 实现圆角:&lt;?xmlversion=&quot;1.0&quot;encoding=&quot;...

android 获取导航栏的高度

获取Android手机屏幕的高度/** *获取状态栏高度 * *@paramcontext上下文 *@return高度 */publicstaticintgetStatusBar...

android 代码

一、判断WiFi是否打开1、注册权限//需注册权限android.permission.ACCESS_WIFI_STATE WifiManagerwifiManager=(WifiManage...

ionic cordova platform add android报错

ionic各种环境以及配置完但是添加平台报错:Using cordova-fetch for anroidFailed to fetch platform anroidProbably this...

android 布局文件里输入框的值自动转换到类里边可以增加为空验证

android 布局文件里输入框的值自动转换到类里边,不用一个一个去读取在赋值先看看android遍历view子控件,用回调函数 /** ...

android后台动态添加布局文件、控件与动态设置属性

翻译布局文件布局文件 &lt;LinearLayout android:layout_width=&quot;fill_parent&quot; andro...

android后台动态添加布局文件、控件与动态设置属性2

原布局文件 &lt;ScrollView android:layout_width=&quot;wrap_content&quot; android:layout_heig...

android 绘制自定义控件,android绘制同心圆,android绘制小三角,android画虚线

一:实现同心圆加小三角指向效果 同心圆public class RingView extends View{ private Paint paint; privat...