android setOnItemClickListener 不起作用

当item中拥有Checkbox控件时候, setOnItemClick 不起作用

解决办法:

  1. 父控件添加属性: android:descendantFocusability="blocksDescendants"
  2. 子控件添加属性: android:focusable="false"
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="@dimen/widget_size_166"
    android:layout_marginLeft="@dimen/widget_size_8"
    android:layout_marginTop="@dimen/widget_size_8"
    android:layout_marginRight="@dimen/widget_size_8"
    android:background="@drawable/plan_shape"
    android:descendantFocusability="blocksDescendants"
    android:orientation="vertical">
    
     <CheckBox
         android:id="@+id/switch_btn"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:layout_alignParentRight="true"
         android:layout_centerVertical="true"
         android:layout_marginRight="@dimen/widget_size_10"
         android:button="@drawable/checkbox_alarm_selector"
         android:checked="false"
         android:focusable="false" />
</LinearLayout>

抽取一个通用的Android的Loading页面

完成仿微信录音的交互功能的开发

解决子控件滑动与父控件冲突的问题

决通用加载页面与下拉刷新控件冲突,导致下拉刷新动画执行不完整的问题

GONE 会导致布局重新执行layout函数,INVISIBLE 不会

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐