安卓問題集錦

問題1:The specified child already has a parent. You must call removeView()java

緣由:一個孩子只能有一個父親,在調用的過程當中同一個孩子出現了兩個父親。緩存

解決方案:在添加視圖以前斷除孩子和其餘父親的關係。測試

ViewGroup  viewParent = (ViewGroup)pauseLinearLayout.getParent();
if(viewParent != null) {
    viewParent.removeAllViewsInLayout();
}
layoutLoading.addView(pauseLinearLayout);

問題2:the project system may be using a version of Gradle that does not contain the method
gradle

解決方案:刪除build.gradle裏面的:ui

{
      compileSdkVersion 17
      buildToolsVersion '18.1.0'
    }
    dependencies {
    }

問題3:andriod library projects cannot be launchedspa

緣由:工程有緩存code

解決方案:orm

  1. 在工程上點擊右鍵,選擇propertiesip

  2. 在Android中不要選中 Is Library,而且Remove裏面的全部東西,選擇本身用的就ok了。ci


問題4:the selected device is incompatible

問題緣由:設備未鏈接。

緣由:測試設備的ip可能衝突了。

解決方案:重設測試設備的ip

相關文章
相關標籤/搜索