私はAndroidが初めてで、少しハングアップしているようです...
初めての Android アプリを作成しようとしています。アプリは、ほとんどの場合、Eclipse が作成するテンプレートにすぎません...
Holo テーマのベースとデフォルトの黒の背景を使用したいと思います。マニフェストで「@android:style/Theme.Holo」をハードコーディングすることで、(シミュレーターで)動作させることができます。しかし、それをstyles.xmlから引き出すことはできません。
マニフェストでハードコーディングしても、Eclipse はアクティビティ エディターに白い背景を表示するため、白い背景に白いテキストを使用する設計が難しくなります...
それは私が見逃している小さなものだと確信しています。下記を参照してください...
前もってありがとうピーター
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="ca.domain.test2"
    android:versionCode="1"
    android:versionName="1.0" >
    <uses-sdk
        android:minSdkVersion="10"
        android:targetSdkVersion="18" />
    <uses-permission android:name="android.permission.VIBRATE" />
    <application
        android:allowBackup="true"
        android:icon="@drawable/icon48"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="ca.domain.test2.Something"
            android:configChanges="keyboardHidden|orientation|screenSize"
            android:label="@string/app_name"
            android:screenOrientation="portrait" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>
と
<resources xmlns:android="http://schemas.android.com/apk/res/android">
    <!--
        Base application theme, dependent on API level. This theme is replaced
        by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
    -->
    <style name="AppBaseTheme" parent="android:Theme.Holo">
        <!--
            Theme customizations available in newer API levels can go in
            res/values-vXX/styles.xml, while customizations related to
            backward-compatibility can go here.
        -->
    </style>
    <!-- Application theme. -->
    <style name="AppTheme" parent="AppBaseTheme">
        <!-- All customizations that are NOT specific to a particular API-level can go here. -->
    </style>
</resources>