1

私のアプリケーションの 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>
4

1 に答える 1

1

テーマは、SDK 15のテーマであるテーマから継承する必要があります。テーマとスタイルを使用して、さまざまなSDKバージョンのサポートを開始するための優れたチュートリアルがあります。お役に立てれば。

http://developer.android.com/guide/topics/ui/themes.html

テーマは、プラットフォームのバージョンに応じて、Themeまたはandroid:Theme.Lightのいずれかを選択的に継承する必要があります。このページの終わりに向かって見てください。

于 2012-07-16T08:03:01.913 に答える