私のアプリケーションの minSdkVersion は 15 です。そのため、アプリケーションのボタンは、ユーザーがタッチすると水色になります。後で、アプリケーションのカスタム タイトルを追加しました。その後、ユーザーがタッチすると、アプリケーション コンポーネントの色がオレンジ色に変わります。カスタムタイトルの問題であることがわかりました。それを解決する方法。SDK バージョン 15 の機能が必要です。カスタム タイトル バーを追加した方法をご覧ください。
私のマニフェスト。
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/CustomTheme">
カスタム タイトル バーに使用される私のスタイル (custom_style.xml)
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="CustomTheme" parent="android:Theme">
<item name="android:windowTitleSize">30dip</item>
</style>
</resources>
カスタム タイトル バーに変更されるアクティビティ コード
requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
setContentView(R.layout.main);
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.window_title);
私のタイトルバーのレイアウト(window_title.xml)
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="30dip"
android:background="#FF0000" >
<ImageView
android:id="@+id/header"
android:src="@drawable/ic_launcher"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="left"/>
<Switch
android:id="@+id/laodAutomatically"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="MirrorLink auto-connect"
style="@android:style/Theme.Holo"
android:layout_alignParentRight="true"
/>
</RelativeLayout>