テーマ(デフォルトではwindowBackground
を定義)を適用する簡単なユーザー名/パスワードダイアログを作成しました。また、Eclipse
でプレビューしたいと思います。Eclipseでテーマのプレビューが失敗する
:
Missing styles. Is the correct theme chosen for this layout?
Use the Theme combo box above the layout to choose a different layout, or fix the theme style references.
Failed to find style 'textViewStyle' in current theme
android.content.res.Resources$NotFoundException
Couldn't find theme resource attr/textAppearanceLarge for the current theme
Exception details are logged in Window > Show View > Error Log
The following classes could not be found:
- TextView (Change to android.widget.TextView, Fix Build Path, Edit XML)
テーマの定義:
<style name="my_theme">
<item name="android:windowBackground">@drawable/form_header</item>
<!-- <item name="android:padding">0dp</item>-->
<item name="android:windowNoTitle">true</item>
</style>
デバッグ正常に動作します。しかし、WYSIWYGはかなり認められるでしょう。
可能性のある複製http://stackoverflow.com/questions/5050443/android-development-missing-theme-error-in-eclipse-ide-for-layout-xml-files – vrs