码迷,mamicode.com
首页 >  
搜索关键字:attributeset    ( 156个结果
安卓顶部标题
package com.example.widget; import android.content.Context; import android.graphics.Canvas; import android.util.AttributeSet; import android.util.Log; import android.view.View; import android.widge...
分类:移动开发   时间:2015-10-19 21:00:30    阅读次数:221
xml中控件调用构造方法
系统控件view有三个构造方法,分别如下public DrawView(Context context) { super(context); } public DrawView(Context context, AttributeSet attrs, int...
分类:其他好文   时间:2015-09-29 13:15:38    阅读次数:212
代码:流式布局FlowLayout
1.代码:package extra.view;import android.content.Context;import android.util.AttributeSet;import android.util.Log;import android.view.View;import androi...
分类:其他好文   时间:2015-09-24 12:54:43    阅读次数:191
自定义控件的初次建立的时候方法调用顺序
package?com.football.app.view; import?android.content.Context; import?android.graphics.Canvas; import?android.util.AttributeSet; import?android.util.Log; import?android.view.MotionEvent; imp...
分类:其他好文   时间:2015-09-17 17:54:33    阅读次数:204
案例:ScrollView中嵌套ListView, 避免:1.ListView只显示首项,2.ScrollView会自动滚动到ListView的首项位置
1.布局文件 2.自定义ListViewpackage com.example.chechengwang.view;import android.content.Context;import android.util.AttributeSet;import android.widget.ListVi...
分类:其他好文   时间:2015-09-16 12:36:41    阅读次数:241
android 左右滑动+索引图标实现方法与代码
首先自定义Gallery实现一次只能滑动一个页面代码如下:public class MGalleryView extends Gallery{public MGalleryView(Context context, AttributeSet attrs) {super(context, attrs)...
分类:移动开发   时间:2015-09-12 12:05:01    阅读次数:202
继承TextView获取焦点实现跑马灯
1 public class MarqueeFocuseTextView extends TextView { 2 3 public MarqueeFocuseTextView(Context context, AttributeSet attrs, 4 int ...
分类:其他好文   时间:2015-08-29 20:06:58    阅读次数:201
Android自定义ViewGroup实现流式布局
实现宽度不足自动换行的流式布局: FlowLayout.java package com.jackie.flowlayout; import android.content.Context; import android.util.AttributeSet; import android.view.View; import android.view.ViewGroup; /** * Cr...
分类:移动开发   时间:2015-08-28 19:51:04    阅读次数:199
ScrollView反弹效果的实现
发现很多APP的界面都可以滑动,QQ,微信等等,自己琢磨了下。效果如下: 代码:ScrollView package com.wsj.wsjdemo; import android.content.Context; import android.graphics.Rect; import android.util.AttributeSet; import android.vi...
分类:其他好文   时间:2015-08-13 12:25:07    阅读次数:136
android 自定义控件中获取属性的三种方式(转)
第一种方法,直接设置属性值,通过attrs.getAttributeResourceValue拿到这个属性值。(1)在xml文件中设置属性值 (2)在构造函数中拿到这个值public IconTextView(Context context, AttributeSet attrs) { ...
分类:移动开发   时间:2015-08-09 15:20:35    阅读次数:163
156条   上一页 1 ... 5 6 7 8 9 ... 16 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!