本文整理汇总了Java中org.chromium.content.browser.input.ImeAdapter.AdapterInputConnectionFactory类的典型用法代码示例。如果您正苦于以下问题:Java AdapterInputConnectionFactory类的具体用法?Java AdapterInputConnectionFactory怎么用?Java AdapterInputConnectionFactory使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
AdapterInputConnectionFactory类属于org.chromium.content.browser.input.ImeAdapter包,在下文中一共展示了AdapterInputConnectionFactory类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: ContentViewCore
import org.chromium.content.browser.input.ImeAdapter.AdapterInputConnectionFactory; //导入依赖的package包/类
/**
* Constructs a new ContentViewCore. Embedders must call initialize() after constructing
* a ContentViewCore and before using it.
*
* @param context The context used to create this.
*/
public ContentViewCore(Context context) {
mContext = context;
WeakContext.initializeWeakContext(context);
HeapStatsLogger.init(mContext.getApplicationContext());
mAdapterInputConnectionFactory = new AdapterInputConnectionFactory();
mRenderCoordinates = new RenderCoordinates();
mRenderCoordinates.setDeviceScaleFactor(
getContext().getResources().getDisplayMetrics().density);
mStartHandlePoint = mRenderCoordinates.createNormalizedPoint();
mEndHandlePoint = mRenderCoordinates.createNormalizedPoint();
mInsertionHandlePoint = mRenderCoordinates.createNormalizedPoint();
mAccessibilityManager = (AccessibilityManager)
getContext().getSystemService(Context.ACCESSIBILITY_SERVICE);
}
示例2: ContentViewCore
import org.chromium.content.browser.input.ImeAdapter.AdapterInputConnectionFactory; //导入依赖的package包/类
/**
* Constructs a new ContentViewCore. Embedders must call initialize() after constructing
* a ContentViewCore and before using it.
*
* @param context The context used to create this.
*/
public ContentViewCore(Context context) {
mContext = context;
WeakContext.initializeWeakContext(context);
HeapStatsLogger.init(mContext.getApplicationContext());
mAdapterInputConnectionFactory = new AdapterInputConnectionFactory();
mRenderCoordinates = new RenderCoordinates();
mRenderCoordinates.setDeviceScaleFactor(
getContext().getResources().getDisplayMetrics().density);
mStartHandlePoint = mRenderCoordinates.createNormalizedPoint();
mEndHandlePoint = mRenderCoordinates.createNormalizedPoint();
mInsertionHandlePoint = mRenderCoordinates.createNormalizedPoint();
mAccessibilityManager = (AccessibilityManager)
getContext().getSystemService(Context.ACCESSIBILITY_SERVICE);
mGestureStateListeners = new ObserverList<GestureStateListener>();
mGestureStateListenersIterator = mGestureStateListeners.rewindableIterator();
}
示例3: setAdapterInputConnectionFactory
import org.chromium.content.browser.input.ImeAdapter.AdapterInputConnectionFactory; //导入依赖的package包/类
@VisibleForTesting
public void setAdapterInputConnectionFactory(AdapterInputConnectionFactory factory) {
mAdapterInputConnectionFactory = factory;
}