安卓页面布局技巧

2019-05-03  本文已影响0人  star小子

安卓布局技巧

1.include

2.最外层为FrameLayout以及不用考虑background时使用merge(合并)

3.用TextView同时显示图片和文字

xml: drawableTop、drawableLeft.....

代码:setCompoundDrawables(Drawable left, Drawable top, Drawable right, Drawable bottom)

4.使用TextView的行间距

lineSpacingExtra 和\n使用

5.按需载入

ViewStub

6.LinearLayout自带的分割线

android:pider=``"@drawable/pider"

android:showDividers=``"middle"

showDividers 是分隔线的显示位置,beginning、middle、end分别代表显示在开始位置,中间,末尾。

还有piderPadding属性这里没有用到,意思很明确给pider添加padding。感兴趣可以试试。

7.space 占位小能手

上一篇 下一篇

猜你喜欢

热点阅读