How to disable EditText in Android

前端 未结 18 2184
后悔当初
后悔当初 2020-12-13 12:03

How can I disable typing in an EditText field in Android?

18条回答
  •  别那么骄傲
    2020-12-13 12:25

    Write this in parent:

    android:descendantFocusability="beforeDescendants"
    android:focusableInTouchMode="true"
    

    Example:

    
    
    
    
    
    

提交回复
热议问题