cwac RichEditText不工作

时间:2015-05-28 20:30:51

标签: android commonsware-cwac

即使在“使用情况”部分here上显得微不足道 我的编辑文本看起来是一样的,当我键入它时,一切都像往常一样出现,当我选择文本时,一切都仍然正常。动作模式中没有“格式化”条目。我做错了什么?

我的布局:

<com.commonsware.cwac.richedit.RichEditText
android:id="@+id/editTextSermon"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="top"
android:hint="@string/type_the_sermon_here"
android:lines="10"
android:imeOptions="flagNoExtractUi"
android:inputType="textMultiLine">
<requestFocus/>
</com.commonsware.cwac.richedit.RichEditText>

在我的活动中:

sermonText = (RichEditText) findViewById(R.id.editTextSermon);
sermonText.enableActionModes(true);

从我需要做的所有文档中,或者是它?

在附注中,文档的部分内容如下:

  

默认情况下,RichEditText自行提供一种用户应用格式的方法:标准Ctrl-B表示粗体,Ctrl-I表示斜体,Ctrl-U表示下划线工作(如果有选择)。

我从未在Android键盘上看过“控制”按钮。这是怎么回事?我只是希望能够大胆,斜体和强调我的文字。

0 个答案:

没有答案