1. 程式人生 > >對話方塊報錯 You need to use a Theme.AppCompat theme (or descendant) with this activity.

對話方塊報錯 You need to use a Theme.AppCompat theme (or descendant) with this activity.

在跟著視訊學習安卓開發時候發現程式碼一致,結果我的卻報錯。 原因:我是用的開發環境為Androidstudio,視訊中使用的是eclipse。在Androidstudio中activity預設繼承的AppCompatActivity,只需要在Androidmanifest檔案中配置。
 <activity android:name=".Activity02"
     android:theme="@style/Theme.AppCompat.Dialog"
            />

關於Activity和 AppCompatActivity
的區別參看  點選開啟連結