😺

Android StudioでDrawioを使う

2024/12/19に公開

概要

Android StudioでDrawioを使いたいんだけど、Visual Studio Codeと違ってすごく面倒だった。

設定方法

  • pluginをインストールする

    • Android Studio -> Settings で "Plugins" を検索
    • Marketplace で drawio を検索 "Diagrams.net integration" をインストールする。
      ※ 貼り付けた画像はインストール後の状態
    • IDEを再起動する
  • IDEを起動するJavaを選択する

    • Help -> Find Actin で "Choose Boot Java Runtime for the IDE" で検索し "Choose Boot Java Runtime for the IDE"を選択
    • "with JCEF" がついているものを選ぶ
    • IDEを再起動する

使い方

ファイルを作る



使う!

参考

  • JCEFってなんだ

The Java Chromium Embedded Framework (JCEF) is a simple framework for embedding Chromium-based browsers in other applications using the Java programming language.
クロミウムベースのブラウザを組み込んで使えるようにするための仕組みらしい。

  • Java Runtimeを更新しないと以下のエラーが出る
    Caused by: java.lang.IllegalStateException: JCEF is not supported in this env or failed to initialize

  • githubではまだopen

  • この作業で一度Android Studioの設定をぶっ壊してしまったので、復旧の参考

Discussion