Android_自定义View
无人是孤岛_一书一世界
我想要赢,只因我不想输
展开
-
TypedArray和obtainStyledAttributes使用
在编写Android自定义按钮示例基础上,如果要指定字体大小产生这样的效果: 其实是不需要自定义变量的,可以直接使用TextView的配置属性: Android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_weight="1" android:te转载 2016-04-19 10:49:00 · 356 阅读 · 0 评论 -
【Android】可控滑动的Viewpager
package com.android.contacts.widget; import android.content.Context; import android.support.v4.view.ViewPager; import android.util.AttributeSet; import android.view.MotionEvent; /** * @author Lu原创 2016-04-20 20:44:54 · 296 阅读 · 0 评论 -
【Android】android系统多点触控源码
原文:http://www.linuxidc.com/Linux/2011-10/44305.htm PointerLocation多点触控代码在Android系统源码中的位置分别为: android\development\apps\Development\src\com\android\development\PointerLocation.java android\fr转载 2016-10-10 16:46:44 · 1001 阅读 · 0 评论 -
【Android】自定义蒙层
在开发过程中有时候会遇到特定情况下显示蒙层的需求,比如在点击某个Edittext搜索框时,部分界面出现浅透明蒙层: 自定义蒙层: /** * Created by Luzj on 2018/8/18. * * 自定义拦截点击蒙层 */ public class Mongolian extends LinearLayout { private OnClickMongoLis...原创 2018-09-04 18:18:08 · 1362 阅读 · 0 评论 -
【Android】兼容Scrollview的可动态设置高度Listview
常用 Scrollview嵌套Listview写法如下: public class NoScrollListView extends ListView { /** * 构造 */ public NoScrollListView(Context context) { super(context); } /** * 构造 */ public NoScrollL...原创 2018-09-03 16:27:20 · 1428 阅读 · 0 评论