本文整理汇总了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);
}
开发者ID:openresearch,项目名称:android-chromium-view,代码行数:23,代码来源:ContentViewCore.java
示例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();
}
开发者ID:mogoweb,项目名称:chromium_webview,代码行数:25,代码来源:ContentViewCore.java
示例3: setAdapterInputConnectionFactory
import org.chromium.content.browser.input.ImeAdapter.AdapterInputConnectionFactory; //导入依赖的package包/类
@VisibleForTesting
public void setAdapterInputConnectionFactory(AdapterInputConnectionFactory factory) {
mAdapterInputConnectionFactory = factory;
}
开发者ID:openresearch,项目名称:android-chromium-view,代码行数:5,代码来源:ContentViewCore.java
注:本文中的org.chromium.content.browser.input.ImeAdapter.AdapterInputConnectionFactory类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论