All Projects → coolwho → fastedit

coolwho / fastedit

Licence: Apache-2.0 license
安卓端高性能输入框。

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to fastedit

KodeEditor
A simple code editor with syntax highlighting and pinch to zoom
Stars: ✭ 60 (+57.89%)
Mutual labels:  syntax-highlighting, syntax, edittext
Nord Visual Studio Code
An arctic, north-bluish clean and elegant Visual Studio Code theme.
Stars: ✭ 749 (+1871.05%)
Mutual labels:  syntax-highlighting, syntax
Sublime Markdown Extended
Top 100 Sublime Text plugin! Markdown syntax highlighter for Sublime Text, with extended support for GFM fenced code blocks, with language-specific syntax highlighting. YAML Front Matter. Works with ST2/ST3. Goes great with Assemble.
Stars: ✭ 645 (+1597.37%)
Mutual labels:  syntax-highlighting, syntax
Nord Sublime Text
An arctic, north-bluish clean and elegant Sublime Text theme.
Stars: ✭ 109 (+186.84%)
Mutual labels:  syntax-highlighting, syntax
Lowlight
Virtual syntax highlighting for virtual DOMs and non-HTML things
Stars: ✭ 310 (+715.79%)
Mutual labels:  syntax-highlighting, syntax
Nord
An arctic, north-bluish color palette.
Stars: ✭ 4,816 (+12573.68%)
Mutual labels:  syntax-highlighting, syntax
Syntax Highlighter
Syntax Highlighter extension for Visual Studio Code (VSCode). Based on Tree-sitter.
Stars: ✭ 88 (+131.58%)
Mutual labels:  syntax-highlighting, syntax
see-cli
A colorful 🌈 cat - syntax highlight print CLI
Stars: ✭ 24 (-36.84%)
Mutual labels:  syntax-highlighting, syntax
syntax highlighter
Syntax Highlighter for Dart/Flutter Code
Stars: ✭ 28 (-26.32%)
Mutual labels:  syntax-highlighting, syntax
nord-atom-syntax
An arctic, north-bluish clean and elegant Atom syntax theme.
Stars: ✭ 72 (+89.47%)
Mutual labels:  syntax-highlighting, syntax
language-rainmeter
Syntax highlighting for Rainmeter files in Atom.
Stars: ✭ 19 (-50%)
Mutual labels:  syntax-highlighting, syntax
Nord Jetbrains
An arctic, north-bluish clean and elegant JetBrains IDE UI and editor color theme.
Stars: ✭ 293 (+671.05%)
Mutual labels:  syntax-highlighting, syntax
android native code view
A EditText with syntax highlight support
Stars: ✭ 23 (-39.47%)
Mutual labels:  syntax-highlighting, edittext
Code Surfer
Rad code slides <🏄/>
Stars: ✭ 5,477 (+14313.16%)
Mutual labels:  syntax-highlighting, syntax
Refractor
Lightweight, robust, elegant virtual syntax highlighting using Prism
Stars: ✭ 291 (+665.79%)
Mutual labels:  syntax-highlighting, syntax
Catage
Node package and CLI tool to convert code into an image with syntax highlighting
Stars: ✭ 44 (+15.79%)
Mutual labels:  syntax-highlighting, syntax
tree-sitter-sql
SQL syntax highlighting for tree-sitter
Stars: ✭ 33 (-13.16%)
Mutual labels:  syntax-highlighting, syntax
nord-notepadplusplus
An arctic, north-bluish clean and elegant Notepad++ theme.
Stars: ✭ 112 (+194.74%)
Mutual labels:  syntax-highlighting, syntax
vscode-liquid
💧Liquid language support for VS Code
Stars: ✭ 137 (+260.53%)
Mutual labels:  syntax-highlighting, syntax
splash
🌊 Highlight source code embedded in HTML with a splash of color
Stars: ✭ 19 (-50%)
Mutual labels:  syntax-highlighting, syntax

介绍

安卓端高性能输入框,支持100万文字流畅显示与编辑,可用于开发语法高亮代码编辑器。

依赖

allprojects {
    repositories {
        ...
        maven { url 'https://www.jitpack.io' }
    }
}
dependencies {
    implementation 'com.github.CodeNeedWho:fastedit:v1.0'
}

使用方法

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        openWrapInputMode();
        FastEdit fastEdit = new FastEdit(this);
        setContentView(fastEdit);

    }

    /**
     * 自动调节输入框高度
     */
    public void openWrapInputMode() {
        getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE | WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
    }
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].