LinearLayout中ImageButton的按压效果不起作用,如图布局如下: 在Activity中LinearLayout有点击事件,此时点击LinearLayout区域但不在ImageButton区域...
分类:
其他好文 时间:
2014-07-16 23:24:26
阅读次数:
257
这次还是先贴上测试代码吧。。主布局文件是个三层结构,最外层和中间层都是LinearLayout的子类,里层是个TextView: 外层的OutterLayout:public class OutterLayout extends LinearLayout { pr...
分类:
移动开发 时间:
2014-07-10 12:27:00
阅读次数:
298
本章主要介绍基本的平常较多使用的控件,包括TextView、EditView、ImageView、Button等。本章将介绍相关控件基本属性的使用,为以后章节的进阶学习提供基础。案例中引用的LinearLayout布局,可先不必深究,后续章节将会详细介绍。...
分类:
移动开发 时间:
2014-07-08 12:49:35
阅读次数:
168
//遍历界面上的控件 fubin.pan LinearLayout sLinerLayout = (LinearLayout)findViewById(R.id.layout_scr); for (int i = 0; i < sLinerLayout.getChildCount(); i++).....
分类:
移动开发 时间:
2014-07-07 15:28:34
阅读次数:
197
Handle onClick for our custom LinearLayout for Gallery-like HorizontalScrollViewThe post "Implement Gallery-like HorizontalScrollView" and "Implement ...
分类:
其他好文 时间:
2014-07-07 12:30:02
阅读次数:
282
本文归纳Android布局中所用到的知识点Android五大布局:LinearLayout 线性布局Relativelayout 相对布局TableLayout表格布局FrameLayout单帧布局AbsoluteLayout绝对布局而一个页面可以用多种布局include:共用布局布局常用工具:反编...
分类:
移动开发 时间:
2014-07-06 22:35:15
阅读次数:
248
TableLayout继承LinearLayout有多少个TableRow对象就有多少行,列数等于最多子控件的TableRow的列数直接在TableLayout加控件,控件会占据一行TableLayout属性:android:shrinkColumns -------设置可收缩的列,(内容过多,则收...
分类:
移动开发 时间:
2014-07-01 13:47:04
阅读次数:
229
如何创建一个View的分割线,如上图 我们见介绍三种可以创建看起来很不错的view的分割线,如在button之间添加分割线。 这个例子是将为LinearLayout内的三个Button间添加分割线。 这三个例子可能容易实现,相信会有更好的实现办法。1 人工添加LinearLayout的分割线我们可....
分类:
移动开发 时间:
2014-07-01 00:12:39
阅读次数:
385
1. LinearLayout布局的嵌套2. 奇葩的 layout_weight 属性布局是一种不可见的控件 代码如下 1 8 9 15 20 25 26 27 33 38 43 44 ...
分类:
其他好文 时间:
2014-06-27 20:36:08
阅读次数:
213
先上效果图:实现这样的效果:一般的思路就是,直接写布局文件,用LinearLayout 嵌套多层子LinearLayout,然后根据权重layout_weight可以达到上面的效果还有就是利用gridview了,但是这里的需求就是不能上下滑动,使用gridview的时候还要计算布局的高度,否则内容超...
分类:
移动开发 时间:
2014-06-27 14:25:56
阅读次数:
275