How to set focusable a LinearLayout in touch mode?
How to set a LinearLayout focusable
in touch mode?
I tried this:
android:focusable="false"
android:clickable="true"
android:focusableInTouchMode="true"
also this:
android:focusable="false"
android:clickable="false"
android:focusableInTouchMode="fals开发者_运维百科e"
But these dont work.What to do?
Thanks in advance.Regards
Goutomandroid:focusable="true" android:focusableInTouchMode="true"
and remain the linear layout to be clickable true by default,,, as per mentioned senario both the things are contradictory,..
精彩评论