1

multiple-choice AlertDialogAndroidで各項目のテキストの色を変更できますか? 以下の項目で私のアラートダイアログがポップアップします。

Apple
Banana
Mango
Grape

を表示する場合AlertDialog、デフォルトの文字色はすべての項目で黒です。しかし、私は以下のようにしたい。

を表示するAlertDialogと、

テキストの色は であるApple必要がありますRed

テキストの色は であるBanana必要がありますYellow

テキストの色は であるMango必要がありますGreen

テキストの色は であるGrape必要がありますPurple

これどうやってするの?

4

2 に答える 2

2

以下のようにできます

 builder.setMessage(Html.fromHtml("<font color='#FF0000'><b>John:</b></font>"+"How are you?"));
                          OR

<string name="Howtoplay"><![CDATA[html data here ]]>   
</string>
builder.setMessage(Html.fromHtml(getString(R.string.HowtoPlay)));

                          OR

カスタム ダイアログを使用すると、テキストの色を設定できます。

Androidのアラートダイアログボックスでテキストメッセージに色を適用する方法

編集:

単語をスペースで分割してから、スパン可能な文字列の前景を設定できます。ダイアログ内の各単語にカスタム カラーを提供することもできます。

http://www.colorhunter.com/tag/android/1から色を指定することもできます

main.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"
tools:context=".MainActivity" >


<Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_above="@+id/textView1"
    android:layout_alignRight="@+id/textView1"
    android:layout_marginBottom="84dp"
    android:layout_marginRight="18dp"
    android:text="Button" />

膨張するdialog.xmlカスタムレイアウト

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
    android:id="@+id/editText1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    />

<Button
    android:id="@+id/cancel"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_centerHorizontal="true"
    android:layout_marginBottom="127dp"
    android:text="CANCEL" />

</RelativeLayout>

あなたのメインアクティビティ

 public class MainActivity extends Activity {

String[] each;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    Button b= (Button) findViewById(R.id.button1);
    b.setOnClickListener(new OnClickListener()
    {

        @Override
        public void onClick(View v) {
            // TODO Auto-generated method stub
            showpopup();
        }

    });
}
 public void showpopup()
 {

final Dialog d = new Dialog(MainActivity.this);
d.setTitle("my title");
d.setContentView(R.layout.dialog);
TextView tv= (TextView) d.findViewById(R.id.editText1);
String s="Apple Bannana Mango Orange";

tv.setText("");
for(int i=0;i<s.length();i++)
{
    each = s.split("\\s+");
}
for(int i=0;i<each.length;i++)
  {

     SpannableString   ss1=  new SpannableString(each[i]);
        if(each[i].equals("Apple"))
        ss1.setSpan(new ForegroundColorSpan(Color.RED), 0, ss1.length(), 0); 
        else if(each[i].equals("Bannana"))
            ss1.setSpan(new ForegroundColorSpan(Color.YELLOW), 0, ss1.length(), 0); 
        else if(each[i].equals("Mango"))
            ss1.setSpan(new ForegroundColorSpan(Color.GREEN), 0, ss1.length(), 0); 
        else if(each[i].equals("Orange"))
            ss1.setSpan(new ForegroundColorSpan(Color.GRAY), 0, ss1.length(), 0); 
        tv.append(ss1); 
        tv.append(" "); 

        tv.setMovementMethod(LinkMovementMethod.getInstance());   
  }

 Button cancel = (Button) d.findViewById(R.id.cancel);

    cancel.setOnClickListener(new OnClickListener()
    {

        @Override
        public void onClick(View v) {
            // TODO Auto-generated method stub
            d.cancel();

        }

    });
    d.show();  
 }
 }

結果のスナップショット

ここに画像の説明を入力

于 2013-04-10T05:54:56.457 に答える