手机
当前位置:查字典教程网 >编程开发 >安卓软件开发 >listview里子项有按钮的情况使用介绍
listview里子项有按钮的情况使用介绍
摘要:你自定义按钮:复制代码代码如下:publicclassMyButtonextendsButton{publicDontPressWithPa...

你自定义按钮:

复制代码 代码如下:

public class MyButton extends Button {

public DontPressWithParentImageView(Context context, AttributeSet attrs) {

super(context, attrs);

}

@Override

public void setPressed(boolean pressed) {

// If the parent is pressed, do not set to pressed.

if (pressed && ((View) getParent()).isPressed()) {

return;

}

super.setPressed(pressed);

}

}

然后在布局人间中这样引用:

复制代码 代码如下:

<your.name.customview.MyButton

android:id="@+id/mybutton"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

/>

【listview里子项有按钮的情况使用介绍】相关文章:

android 9PNG图片制作过程(图文介绍)

Android 开机广播的使用及配置

基于Android Service 生命周期的详细介绍

Android中库项目的使用方法图文介绍

Android里实现退出主程序的提示代码

基于Android AppWidgetProvider的使用介绍

android 字体颜色选择器(ColorPicker)介绍

Android Mms之:PDU的使用详解

ListView的Adapter使用 之 初学ArrayAdapter String

android WebView加载html5介绍

精品推荐
分类导航