android - Changing text color in InputMethodeService -
i want change color of entering text soft keyboard possible inputconnection
made baseinputconnection
individual:
public class k extends baseinputconnection{ keying ke; public k(view targetview, boolean fulleditor) { super(targetview, fulleditor); // todo auto-generated constructor stub } }
but in class extends inputmethodservice
can't create object. because baseinputconnection
requires view
, boolean
in constructor.
how can use class in inputmethodservice
, control in attribute it. can 1 me , provide code advise ?
Comments
Post a Comment