Example usage for android.inputmethodservice InputMethodService getResources

List of usage examples for android.inputmethodservice InputMethodService getResources

Introduction

In this page you can find the example usage for android.inputmethodservice InputMethodService getResources.

Prototype

@Override
    public Resources getResources() 

Source Link

Usage

From source file:com.android.inputmethod.accessibility.AccessibleKeyboardViewProxy.java

private void initInternal(InputMethodService inputMethod) {
    mInputMethod = inputMethod;/*  w w  w  . j  a va 2 s . com*/
    mEdgeSlop = inputMethod.getResources().getDimensionPixelSize(R.dimen.accessibility_edge_slop);
}

From source file:com.onyx.latinime.accessibility.AccessibleKeyboardViewProxy.java

private void initInternal(final InputMethodService inputMethod) {
    mInputMethod = inputMethod;/*  w w w .j ava  2  s  .co m*/
    mEdgeSlop = inputMethod.getResources().getDimensionPixelSize(R.dimen.accessibility_edge_slop);
}