Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android focusable and focusable in touch mode

I have nested edit texts within table layout and then table layout within scroll view, the focusable / focusable in touch mode doesn't work in real devices but surprisingly it works in emulator.

please can some on offer alternative solution?

like image 328
codejunkie Avatar asked Dec 28 '11 12:12

codejunkie


People also ask

What is clickable and focusable in Android?

Clickable means that it can be clicked by a pointer device or be tapped by a touch device. Focusable means that it can gain the focus from an input device like a keyboard.

What is touch mode in Android?

The touch mode is a state of the view hierarchy that depends solely on the user interaction with the phone. By itself, the touch mode is something very easy to understand as it simply indicates whether the last user interaction was performed with the touch screen.


1 Answers

Achieved the desired result here and added in manifest for each activity

android:windowSoftInputMode="stateHidden"
like image 133
codejunkie Avatar answered Oct 21 '22 08:10

codejunkie