如何防止 ListItem 内的 Button 突出显示

Posted

技术标签:

【中文标题】如何防止 ListItem 内的 Button 突出显示【英文标题】:How to prevent Button inside ListItem getting highlight 【发布时间】:2012-08-30 03:20:09 【问题描述】:

所以我有一个带有 ListView 按钮的自定义列表项。按下时,按钮显示备用可绘制对象以向用户显示反馈。但是,当我单击该行时,每个按钮都显示为按下状态,就好像我单击了它们一样。

如何保持按钮显示其原始状态而不是 state_pressed?

布局/列表项:

<LinearLayout
    android:layout_
    android:layout_
    android:layout_weight="1"
    android:orientation="horizontal"
    android:paddingBottom="10dp"
    android:paddingTop="10dp"
    android:descendantFocusability="blocksDescendants" >

    <LinearLayout
        android:layout_
        android:layout_
        android:layout_weight="1"
        android:orientation="vertical"
        android:paddingLeft="10dp"
        android:paddingRight="10dp"
        android:gravity="center_vertical|left" >

        <TextView
            android:id="@+id/txtMain"
            android:layout_
            android:layout_
            android:singleLine="true"
            android:textAppearance="?android:attr/textAppearanceLarge"
            style="@style/PrimaryText" />

        <TextView
            android:id="@+id/txtSub"
            android:layout_
            android:layout_
            android:singleLine="true"
            android:textAppearance="?android:attr/textAppearanceLarge"
            style="@style/SecondaryText" />
    </LinearLayout>

    <ImageButton
        android:id="@+id/imbResponse"
        android:layout_
        android:layout_
        android:background="@null"
        android:focusable="false"
        android:duplicateParentState="false"
        android:src="@drawable/response_btn" 
        android:contentDescription="@string/response"
        android:layout_marginLeft="10dp"
        android:layout_marginTop="5dp"
        android:layout_marginRight="10dp"
        android:layout_marginBottom="5dp" />
</LinearLayout> 

可绘制/response_btn.xml:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
    <item android:state_focused="true" android:drawable="@drawable/res_m" />
    <item android:state_pressed="true" android:drawable="@drawable/res_m" />
    <item android:state_focused="false" android:state_pressed="false" android:drawable="@drawable/res_alt_m" />
</selector>

我已尝试删除 state_focused 和 state_pressed、state_focused。按钮似乎从其父级获取 state_pressed。

【问题讨论】:

运气好能找到解决方案吗? 【参考方案1】:

我认为您需要禁用父级的状态为android:duplicateParentState="false"

将此添加到您的Button

【讨论】:

我做了什么 ;)。顺便说一下,它是 ImageButton。 试过了,没区别。【参考方案2】:

这让我的应用更努力地工作,但它解决了问题:

...
mImageIcon.setOnTouchListener(new View.OnTouchListener() 

        @Override
        public boolean onTouch(View v, MotionEvent event) 
            switch (event.getAction()) 
            case MotionEvent.ACTION_DOWN:
                v.setBackgroundResource(R.drawable.my-background);
                break;
            case MotionEvent.ACTION_UP:
            case MotionEvent.ACTION_CANCEL:
                /*
                 * You can use another background rather than 0.
                 */
                v.setBackgroundResource(0);
                break;
            

            return false;
        // onTouch()
    );

【讨论】:

你能解释一下这个解决方案吗?【参考方案3】:

我发现将android:clickable="true" 设置为父视图会阻止更改子视图状态。

见this answer。

【讨论】:

【参考方案4】:

我也有这个问题,我google了一下,试了3个小时左右!现在我找到了解决方案。只需将 OnClickListener 添加到子视图。甚至在 OnClick 方法中什么都不做。它适用于 2.3 模拟器和我的 nexus 5。

【讨论】:

以上是关于如何防止 ListItem 内的 Button 突出显示的主要内容,如果未能解决你的问题,请参考以下文章

如何在 DropdownButton react-bootstrap 内的 Button 元素上应用 css 类?

UIPageViewController 内的 UITableViewController,如何防止对角拖动

如何将属性添加到输入标签 asp.net 内的 RadioButtonList 项

如何防止 UITableViewCell 内的手势干扰 UITableView 的滚动?

如何检测 iframe 内的点击(跨域)?又名防止点击欺诈

如何检测 iframe(跨域)内的点击?又名防止点击欺诈