android.inputmethodservice.ExtractEditText Java Examples

The following examples show how to use android.inputmethodservice.ExtractEditText. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ImeContainerInputMethodService.java    From mongol-library with MIT License 5 votes vote down vote up
@Override
public View onCreateExtractTextView() {
    View extractedView = super.onCreateExtractTextView();
    ExtractEditText editText = extractedView.findViewById(android.R.id.inputExtractEditText);
    editText.setTypeface(MongolFont.get(MongolFont.QAGAN, getApplicationContext()));
    return extractedView;
}
 
Example #2
Source File: ChimeeInputMethodService.java    From Chimee with MIT License 5 votes vote down vote up
@Override
public View onCreateExtractTextView() {
    View extractedView = super.onCreateExtractTextView();
    ExtractEditText editText = extractedView.findViewById(android.R.id.inputExtractEditText);
    editText.setTypeface(MongolFont.get(MongolFont.QAGAN, getApplicationContext()));
    return extractedView;
}
 
Example #3
Source File: DSL.java    From anvil with MIT License 4 votes vote down vote up
public static BaseDSL.ViewClassResult extractEditText() {
  return BaseDSL.v(ExtractEditText.class);
}
 
Example #4
Source File: DSL.java    From anvil with MIT License 4 votes vote down vote up
public static Void extractEditText(Anvil.Renderable r) {
  return BaseDSL.v(ExtractEditText.class, r);
}
 
Example #5
Source File: DSL.java    From anvil with MIT License 4 votes vote down vote up
public static BaseDSL.ViewClassResult extractEditText() {
  return BaseDSL.v(ExtractEditText.class);
}
 
Example #6
Source File: DSL.java    From anvil with MIT License 4 votes vote down vote up
public static Void extractEditText(Anvil.Renderable r) {
  return BaseDSL.v(ExtractEditText.class, r);
}
 
Example #7
Source File: ExtractEditTextAssert.java    From assertj-android with Apache License 2.0 4 votes vote down vote up
public ExtractEditTextAssert(ExtractEditText actual) {
  super(actual, ExtractEditTextAssert.class);
}