Customize Consent Preferences

We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.

The cookies that are categorized as "Necessary" are stored on your browser as they are essential for enabling the basic functionalities of the site. ... 

Always Active

Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.

No cookies to display.

Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.

No cookies to display.

Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.

No cookies to display.

Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.

No cookies to display.

Advertisement cookies are used to provide visitors with customized advertisements based on the pages you visited previously and to analyze the effectiveness of the ad campaigns.

No cookies to display.

Android

【flutter・android開発】system UI isn’t respondingが出る場合の解決方法

対象者

Android StudioでFlutter開発している方

事象

エミュレータを立ち上げてしばらく放置しておくと

「system UI isn’t responding」

というエラーメッセージが表示される

解決策

1.メニューのツールー>AVDマネージャーを選択

(もしくはAVDマネージャーのアイコンを選択)

 

2.対象のエミュレータのアクションの鉛筆マークを選択

3.エミュレートパフォーマンスのグラフィックスが「Automatic」になっているはずなので、「Hardware – GLE 2.0」を選択

4.再度エミュレータを立ち上げる

原因を自分なりに考察

おそらくはAutomaticオプションの不具合(AndroidStudio側の不備)

「system UI isn’t responding」を直訳すると

「システムUI(ユーザーインターフェース)は応答していません」

となる。

 

一方、AndroidStudioのDevelopersガイドを参照すると

Emulated Performance: Graphics

エミュレータでのグラフィックのレンダリング方法を選択します。

  • [Hardware]: コンピュータ グラフィック カードを使用して高速レンダリングします。
  • [Software]: ソフトウェアでグラフィックをエミュレートします。グラフィック カードでのレンダリングに問題がある場合に便利です。
  • [Automatic]: グラフィック カードに応じてエミュレータが最適なオプションを選択します。

とある。

この情報から察するに、Andoridのエミュレータを立ち上げていると、随時レンダリング処理(画像を更新すること)をしていると推察できる。

[Automatic]は

「グラフィック カードに応じてエミュレータが最適なオプションを選択します。」

と記載があるが、今回このようなエラーが出たということは、

Automaticにしたのに最適なオプションを選択されていなかったため、今回の事象がおきたと考えられる。

そのため、[Automatic]ではなく最初からPCのグラフィックカードを使用する[Hardware]を選択してれば当事象は発生しない。

※すっきりしませんが。。。原因がはっきりしたら随時追記予定

関連記事 

・AVD Managerとは?
・Android Studioの背景の色を黒にしたい

動画

同じ内容ですが動画でも説明しています。

 

0
広告




関連記事