1. 程式人生 > >Android初窺門徑

Android初窺門徑

問題1:報錯

Execution failed for task ':app:mergeDebugResources'.
> Error: java.util.concurrent.ExecutionException: com.android.builder.internal.aapt.v2.Aapt2Exception: AAPT2 error: check logs for details


* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

 

在gradie.properties中新增如下語句即可解決
android.enableAapt2=false
遇到sync報錯
The option 'android.enableAapt2' is deprecated and should not be used anymore.
Use 'android.enableAapt2=true' to remove this warning.
It will be removed at the end of 2018..
不影響程式執行,暫時不理會。

    問題2:

activity_main中design檢視不載入。

解決方法:在res下的values資料夾中的styles.xml檔案中,在下列標籤中加入Base.路徑

 

<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
即<style name="AppTheme" parent="Base.Theme.AppCompat.Light.DarkActionBar">
即可解決。

2018/7/22

1、R檔案資源丟失,專案build報錯。解決方式。修改android.enableAapt2 = true

再build一遍專案,bug解決。

2、去除標題欄,綜合部落格和各類網站的此類問題,個人解決方法:刪除AndroidManifest.xml檔案中的android:label標籤,

將android:theme標籤修改為:

android:theme="@style/Theme.AppCompat.NoActionBar">標題欄成功去除。