一個 Button 點擊了兩下才有效果,原因是加了 FocusInTouchMode 屬性
android:focusableInTouchMode="true"
加了這個之后,第一次點擊變成Focus狀態(tài),再點擊才能相應Touch事件,想一次點擊把這個屬性去掉就可以了。
一個 Button 點擊了兩下才有效果,原因是加了 FocusInTouchMode 屬性
android:focusableInTouchMode="true"
加了這個之后,第一次點擊變成Focus狀態(tài),再點擊才能相應Touch事件,想一次點擊把這個屬性去掉就可以了。