Android Studioの使用中に発生した問題の概要
1398 ワード
1、Activity統合AppCompatActivityを使用する場合
まずパッケージを引くといつもエラーが発生し、AppCompatActivityが見つからない.SDKの下にパッケージがあるのに.このエラーは、2つのAndroid Studioを開いたときに発生し、そのうちの1つをオフにすると正常になります.
2、This Activity already has an action bar supplied by the window decor
AppCompatActivityが正常に導入された場合、次のように呼び出されます.
はフラッシュバックし、異常検出エラーは次のとおりです.
検索された解決方法:
I think you're developing for Android Lollipop, but anyway include this line: false to your theme declaration inside of your app/src/main/res/values/styles.xml. Also, if you're using AppCompatActivity support library of version 22.1 or greater, add this line:true Your theme declaration may look like this after all these additions:
まずパッケージを引くといつもエラーが発生し、AppCompatActivityが見つからない.SDKの下にパッケージがあるのに.このエラーは、2つのAndroid Studioを開いたときに発生し、そのうちの1つをオフにすると正常になります.
2、This Activity already has an action bar supplied by the window decor
AppCompatActivityが正常に導入された場合、次のように呼び出されます.
Toolbar toolbar = (Toolbar)findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
はフラッシュバックし、異常検出エラーは次のとおりです.
This Activity already has an action bar supplied by the window decor……
検索された解決方法:
I think you're developing for Android Lollipop, but anyway include this line: false to your theme declaration inside of your app/src/main/res/values/styles.xml. Also, if you're using AppCompatActivity support library of version 22.1 or greater, add this line:true Your theme declaration may look like this after all these additions: