あんどろいどデブ

Android Dev 技術情報 備忘録

android.util.AndroidRuntimeException: You cannot combine custom titles with other title features

APIレベルのターゲットを8→16へ変更したところ
実行時に以下のエラーが発生。

android.util.AndroidRuntimeException: You cannot combine custom titles with other title features

manifestを修正
修正前
<activity android:name="Weather" />
修正後
<activity android:name="Weather"
android:theme="@android:style/Theme"/>


android:theme
="@android:style/Theme"

activityのmanifestの定義にテーマを追加する必要あり。