listview里子项有按钮的情况使用介绍
来源:爱站网时间:2019-01-24编辑:网友分享
在Android中,每个接口都是灵活的,而交换接口实际上是不同活动之间的操作,其实活动的启动模式决定了活动的运营方式,下面是listview里子项有按钮的情况使用介绍,一起跟着爱站技术频道小编来了解吧!
在Android中,每个接口都是灵活的,而交换接口实际上是不同活动之间的操作,其实活动的启动模式决定了活动的运营方式,下面是listview里子项有按钮的情况使用介绍,一起跟着爱站技术频道小编来了解吧!
你自定义按钮:
复制代码 代码如下:
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);
}
}
然后在布局人间中这样引用:
复制代码 代码如下:
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
上文是关于listview里子项有按钮的情况使用介绍,相信大家都有了一定的了解,想要了解更多的技术信息,请继续关注爱站技术频道吧!