java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity.
在android studio 通常遇到這個問題時,是因為當你重A Activity intent到B Activity 時當兩個頁面主題不一樣時就會出現錯誤。
就會出現錯誤。
所以只要去AndroidManifest.xml 加入
<activity
android:name=".PieChart"
android:label="@string/title_activity_pie_chart"
android:theme="@style/Theme.AppCompat" ><!--注意變換主題-->
</activity>
但是要注意的是 主題會依照你要轉跳過去的頁面而動。
沒有留言:
張貼留言