簡體   English   中英

用於文本選擇控件的術語浮動工具欄

[英]Custoom floating toolbar for text selection controls

我想自定義選擇文本時出現的浮動工具欄。

這是標准浮動工具欄的示例:

浮動工具欄示例

你知道我如何定制它(比如添加Bold,Italic,......)嗎? 有外部圖書館嗎?

Monospace應用程序正是我想要的:

在此輸入圖像描述

您將向清單中的活動添加意圖過濾器:

<activity
android:name=".ProcessTextActivity"
android:label="@string/process_text_action_name">
  <intent-filter>
    <action android:name="android.intent.action.PROCESS_TEXT" />
    <category android:name="android.intent.category.DEFAULT" />
    <data android:mimeType="text/plain" />
  </intent-filter>
</activity>`

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM