3

すべてのダイアログ、alertDialogs、スピナーをカスタマイズしたい。テキストの色とタイトルバーの背景を変更したい。

ここに画像の説明を入力

私はより良い説明を試みます: テキスト (JOLLY BAR DI ...) を白く、タイトルの背景 (ダイアログの上部から含まれるタイトルの下のソフトブルーの線まで) を青 (# 044592)。

どうすればいいですか?

4

1 に答える 1

7

わかりました、私は問題をほぼ解決しました(私と同じ問題を抱えている他の人を助けるかもしれないので、私は自分の質問に答えています)。スピナー、DatePicker などの問題は残ります。

AlertDialogs については、次のようにします。

AlertDialog.Builder builder = new AlertDialog.Builder(MyActivity.this, AlertDialog.THEME_HOLO_LIGHT);
//Then I do what I need with the builder (except for setTitle();
LayoutInflater inflater = getLayoutInflater();
View view=inflater.inflate(R.layout.dialog_custom_title, null);
TextView title = (TextView)view.findViewById(R.id.myTitle);
title.setText("Title I want to show");
builder.setCustomTitle(view);
AlertDialog alert = builder.create();
alert.show();

dialog_custom_title.xml :

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#044592" >

   <TextView
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/myTitle"
        android:layout_width="fill_parent"
        android:textSize="20dp"
        android:layout_height="70dp"
        android:layout_marginLeft="25dp"
        android:paddingTop="22dp"
        android:textColor="@android:color/white"
        android:textStyle="bold" />

</RelativeLayout>

ダイアログのように見せたいアクティビティの場合、次のように Manifest.xml で宣言します。

<activity
     android:name="com.aveschini.AnotherActivity"
     android:screenOrientation="portrait"
     android:label="My Dialog"
     android:theme="@style/MyDialog"
     android:windowSoftInputMode="adjustPan" />

次に、 res/values/styles.xml ファイルで次のようにします。

    <style name="AppTheme" parent="android:Theme.Holo.Light" />

    <style name="MyDialog" parent="android:Theme.Holo.Light.Dialog">
        <item name="android:windowTitleStyle">@style/DialogWindowTitle</item>
    </style>

    <style name="DialogWindowTitle">
        <item name="android:textAppearance">@style/TextAppearance.DialogWindowTitle</item>
        <item name="android:background">#044592</item>
    </style>

    <style name="TextAppearance.DialogWindowTitle" parent="android:TextAppearance">
        <item name="android:textColor">@android:color/white</item>
        <item name="android:textStyle">bold</item>
        <item name="android:textSize">20sp</item>
    </style>

タイトルと本文の間に水色の仕切りがまだあります...まだ作業中です。すでに述べたように、Spinners、DatePicker などの処理方法はまだわかりません...

それが結果です: AlertDialog:

ここに画像の説明を入力

そして、ダイアログの外観を持つアクティビティ:

ここに画像の説明を入力

于 2013-01-29T15:22:43.490 に答える