0

Is there ways to modify the appearance of the title area. Can you add some like a horizontal line to the bottom, to better separate the title area from the rest of the dialog. If I wanted to add a image or place text other than the standard

public void create() {
  super.create();
  setTitle("The Base Dialog Class");
  setMessage("Hello World");
} 

Is it possible the make the title area look they you like and not the standard way?

4

1 に答える 1

1

を使用してタイトル領域の画像を変更し、 を使用setTitleAreaImage(Image image)して色を変更できますsetTitleAreaColor(RGB color)

さらに、 によってユーザーにフィードバックを提供できますsetErrorMessage(String message)

知る限り、これ以上できることはありません...

于 2012-08-30T15:53:38.320 に答える