全文
Android (app) has already been disposed (see the cause for stacktrace) so the child
Sorry but parent: Android (app) has already been disposed (see the cause for stacktrace) so the child: {} will never be disposed
カテゴリー: Android
[Android]エラー対策Error:Execution failed for task ‘:app:compileDebugJavaWithJavac’. Could not expand ZIP
・Error:Execution failed for task ‘:app:compileDebugJavaWithJavac’.
> Could not expand ZIP ‘C:\Users\username\.android\build-cache\xxxxxxxxxxxxxxxxxxxxxxxx\output\jars\classes.jar’.
[Android]エラー対策 Warning:The project encoding (windows-31j) does not match the encoding specified in the Gradle build files (UTF-8).
Warning:The project encoding (windows-31j) does not match the encoding specified in the Gradle build files (UTF-8).
This can lead to serious bugs.
警告:プロジェクトのエンコーディング(windows-31j)が、Gradleビルドファイル(UTF-8)で指定されたエンコーディングと一致しません。
これは深刻なバグにつながる可能性があります。
[Android]エラー対策 Error inflating class android.support.constraint.ConstraintLayout
Error inflating class android.support.constraint.ConstraintLayout
ネットからサンプルコードなどを持ってきたときに発生する。
原因
コンストレイントレイアウト(ConstraintLayout)関連のエラーが出てる
基本的に、このエラーが出たら古い開発環境である。
AndroidStudioのバージョンを上げたほうが良い。
ConstraintLayoutはAndroidStudio 2.2から使える。それ以前の環境を使ってるのはちょっと古すぎます。
“[Android]エラー対策 Error inflating class android.support.constraint.ConstraintLayout” の続きを読む
[Android]エラー対策 must implement OnFragmentInteractionListener
must implement OnFragmentInteractionListener
java.lang.ClassCastException: com.example.appname.MainActivity@xxxxxxx must implement OnFragmentInteractionListener
FragmentをActivityに貼り付けようとするとエラー発生。
“[Android]エラー対策 must implement OnFragmentInteractionListener” の続きを読む
[Android]エラー対策 android.os.NetworkOnMainThreadException
・android.os.NetworkOnMainThreadException
原因
メインスレッドからネットワーク制御をしたために発生した
昔は許されたらしい。
“[Android]エラー対策 android.os.NetworkOnMainThreadException” の続きを読む
[Android]エラー対策 Cannot execute task: the task has already been executed (a task can be executed only once)
Cannot execute task: the task has already been executed (a task can be executed only once)
・タスクを実行できません:タスクは既に実行されています(タスクは1回だけ実行できます)
原因
AsyncTask実行時に発生
AsyncTaskは毎回作り直さないといけない。
[Android]エラー対策 Warning:Android Studio 2.3.2.0 requires Gradle 2.14.1 (or newer) but project is using version 2.2.1.
Warning:Android Studio 2.3.2.0 requires Gradle 2.14.1 (or newer) but project is using version 2.2.1.
It is strongly recommended that you update Gradle to version 2.14.1 or newer.
AndroidStudio2.3.2は Gradle2.14.1以降を要求します。
あなたはgradle2.2.1を使っています。2.14.1より新しいものを使うことをおすすめします。
[Android]エラー対策 Method ‘methodname’ is too complex to analyze by data flow algorithm
Method ‘methodname’ is too complex to analyze by data flow algorithm
“[Android]エラー対策 Method ‘methodname’ is too complex to analyze by data flow algorithm” の続きを読む
[Android]エラー対策 Using setJavaScriptEnabled can introduce XSS vulnerabilities into you application, review carefully.
Using setJavaScriptEnabled can introduce XSS vulnerabilities into you application, review carefully.