# 类似搜狗输入法 **Repository Path**: meav/similar-to-sogou-input-method ## Basic Information - **Project Name**: 类似搜狗输入法 - **Description**: Android代码-类似搜狗输入法源码, 支持中文, 英文. 遥控器. - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 2 - **Created**: 2025-06-27 - **Last Updated**: 2025-07-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 类似搜狗输入法 #### 介绍 Android代码-类似搜狗输入法源码 支持中文, 支持遥控器, 支持英文, android13和android14上, 中文状态下候选词会不显示, 解决方案如下: RemoteIME类下的每个setCandidatesViewShown方法下添加,fullscreenAreaShow方法. private void fullscreenAreaShow(boolean show) { View candidatesArea = getWindow().findViewById(android.R.id.candidatesArea); if (candidatesArea != null) { ViewParent parent = candidatesArea.getParent(); if (parent != null) { ViewGroup fullscreenArea = (ViewGroup) parent; if (show) { fullscreenArea.setVisibility(View.VISIBLE); } else { fullscreenArea.setVisibility(View.INVISIBLE); } } } }