I'm going to support Android devices not equipped with touch screens putting in manifest
<uses-feature android:name="android.hardware.touchscreen" android:required="false"/>
But still I do have some doubts. E.g. essential part of my application UI is built upon context menus, which appears on long tap of EditText
and ImageView
widgets.
I just wonder if device is lacking touch screen how operates context menu functionality? Can someone tell me?