Using the soft keyboard API's I can get the properties of an android EditText using the following code example
EditorInfo ei = getCurrentInputEditorInfo();
Log.i(TAG, "found field hintText = " + ei.hintText);
but the following code above will not retrieve the hint text if the input field was displayed from a browser.
How do I get the properties of an input field displayed in a browser?